function AddMyReport() {
	with ( document.forms['GsForm'] ) {
		MyReportAction.value="Add";
		submit();
	}
} // AddMyReport

function AddSectionMyReport(ObjectId) {
	with ( document.forms['GsForm'] ) {
		MyReportAction.value="AddObjectAndDescendant";
		MyReportObjectId.value=ObjectId;
		submit();
	}
} // AddMyReport

function DeleteMyReport(ObjectId) {
	with ( document.forms['GsForm'] ) {
		MyReportAction.value="Delete";
		MyReportObjectId.value=ObjectId;
		submit();
	}
} // DeleteMyReport

function DeleteAllMyReport() {
	with ( document.forms['GsForm'] ) {
		MyReportAction.value="DeleteAll";
		submit();
	}
} // DeleteAllMyReport
