function calandar_date_click(search_date) {
	document.forms.send.curdate.value = search_date;
	document.forms.send.search_date.value = search_date;
	document.forms.send.search_month.value = "";
	document.forms.send.search_year.value = "";
	document.forms.send.intpage.value = "";
	document.forms.send.action = "06_01_upcoming_events.asp"
	document.forms.send.submit();
	}
	
function search_month(searchmonth,searchyear) {
	document.forms.send.curdate.value = searchmonth  + "/01/"  + searchyear;
	document.forms.send.reset_intpage.value = true;
	document.forms.send.search_date.value = "";
	document.forms.send.search_month.value = searchmonth;
	document.forms.send.search_year.value = searchyear;
	document.forms.send.action = "06_01_upcoming_events.asp"
	document.forms.send.intpage.value = "";
	document.forms.send.submit();	
	}
	
function move_month(move_type)	{
		//in here I might want to convert the date to english... but not here
		document.forms.send.search_date.value = "";
		document.forms.send.movetype.value = move_type;
		document.forms.send.intpage.value = "";
		document.forms.send.action = "06_01_upcoming_events.asp";
		document.forms.send.submit();
		}
		
function switch_event_type(event_type_id){
	document.send.intpage.value = "1";
	document.send.action= "<%=page%>";
	document.send.method = "post";
	document.send.submit();
}
