/*
 * This method is used by the calendar control. So when you select a new month/year at the bottom of the control
 * it would auto update the page;
 */
function checkform() {
	var month,year,day, link;
	month = document.calform.month[document.calform.month.selectedIndex].value;
	day = document.calform.day.value;
	year = document.calform.year[document.calform.year.selectedIndex].value;
	link = document.calform.link.value;
	document.location.href=link+"?date="+month+"/"+day+"/"+year;
}
