function OpenWindow(URL, WIDTH, HEIGHT){
	 window.open (URL,"LinkWindow","toolbar=yes,location=yes,scrollbars=yes,WIDTH=" + WIDTH + ",HEIGHT=" + HEIGHT + ",personalbar=yes,directories=yes,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWIDTH-WIDTH)/2)+",top="+parseInt((screen.availHEIGHT-HEIGHT)/2)+"");
	 return false;
	}
	
	function OpenPDFWindow(URL, WIDTH, HEIGHT){
	 window.open (URL,"PDFWindow","toolbar=no,location=no,scrollbars=no,WIDTH=" + WIDTH + ",HEIGHT=" + HEIGHT + ",personalbar=no,directories=no,menubar=no,titlebar=yes,resizable=yes,left="+parseInt((screen.availWIDTH-WIDTH)/2)+",top="+parseInt((screen.availHEIGHT-HEIGHT)/2)+"");
	 return false;
	}
	function OpenWindowSelfResize(URL){
	 width = 400;
	 height = 400;
	 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=yes,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;
	}