// JavaScript Document
function flagAndSendForJavaScript() {
	
	document.forms[0].flagedForJavaScript.value = 1;
	document.forms[0].submit();
}

function selectedMonthChanged() {
	
//	alert(document.forms[0].monthSelect.value);
	document.forms[0].marker.value = "selectedMonthChanged";
	document.forms[0].submit();
}

function datePicked(timestamp) {
	
//	alert(document.forms[0].monthSelect.value);
	document.forms[0].marker.value = "datePicked";
	document.forms[0].datePicked.value = timestamp;
	document.forms[0].submit();
}

function timePicked(timestamp) {
	
//	alert(document.forms[0].monthSelect.value);
	document.forms[0].marker.value = "timePicked";
	document.forms[0].timePicked.value = timestamp;
	document.forms[0].submit();
}

function goagbs(agbUrl) {
 
	agbWindow = window.open(agbUrl, "agbFenster", "width=840,height=590,left=20,top=20,resizable,scrollbars");
	agbWindow.focus();
}
