// JavaScript Document
// JavaScript Document
/*function meover(id) {
	document.getElementById(id).style.background="#000000"
}
function meout(id) {
	document.getElementById(id).style.background= "None";
	
}*/
function PopupPicker(ctl,w,h)
{
	var PopupWindow=null;
	settings='width='+ w + ',height='+ h + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no,top=390px,left=500px';
	PopupWindow=window.open('DatePicker.aspx?Ctl=' + ctl,'DatePicker', settings);
	PopupWindow.focus();
}
function PopupPicker1(ctl,w,h)
{
	var PopupWindow=null;
	settings='width='+ w + ',height='+ h + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no,top=390px,left=500px';
	PopupWindow=window.open('DatePicker.aspx?Ctl=' + ctl,'DatePicker', settings);
	PopupWindow.moveTo(308,380)
	PopupWindow.focus();
}