var pop_top, pop_left;

function wacks(strObject){
	var thisForm = document.frmMain;
	var szInputDate = eval(strObject + ".value");
	window.open("/inc/Calendar/Calendar.asp?szobjName=" + strObject + "&szInputDate=" + szInputDate, "calendar", 'left = '+pop_left+',top='+pop_top+',width=300,height=260,fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no',false);
}

function GetMouseXYposition(e){
	if (navigator.appName == "Microsoft Internet Explorer") {
		pop_left = event.screenX;
		pop_top = event.screenY;
	}
	else{
		if(e){
			pop_left = e.screenX;
			pop_top = e.screenY;
		}
		else{
			pop_left = event.screenX;
			pop_top = event.screenY;
		}
	}  
}