<!--
function OpenImageWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=no,location=no, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");	 
}
	
function OpenNewWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=yes,location=yes, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=no,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
	 
}
	
function OpenWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=yes,location=yes, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=no,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
 return false;
}
function openWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=yes,location=yes, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=no,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
 return false;
}

function QuickCloseWindow(URL, width, height){
 window.open (URL,"anyName","toolbar=no,location=no, scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
}
	
function OpenWindowNoBars(URL, width, height){
 //width = 400;
 //height=400;
 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no");
 return false;
}
	
function OpenWindowScrollOnly(URL, width, height){
 //width = 400;
 //height=400;
 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no");
 return false;
}
	
function OpenWindowSelfResize(URL){
 width = 400;
 height = 400;
 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=no,width=400,height=400,personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
 return false;
}
	
function ShowCalendar(formName, controlName){
	window.open ("/Calendar.asp?Control=" + formName + "." + controlName,"calWin","scrollbars=no,status=no,width=220,height=155");
}

-->