// JavaScript Document
// This javascript function opens the calendar pop-up. If you want to change the position where the pop-up appears on the screen, alter the values for top and left below. Note that position is based on the top left edge of the computer screen, not the browser window. 
function openCalendar(FormElement){
	var calendarwindow;
	url = "calendar.html?formname=resform&formelement=" + FormElement;
	calendarwindow = window.open(url,"calendar","toolbar=no,width=200,height=144,top=50,left=50,status=no,scrollbars=no,resize=no,menubar=no");
	calendarwindow.focus();
}