// JavaScript Document
	
function OpenNewwin(URL){

	wwidth = 530;
	wheight = 770;
	movey = (screen.height-wheight)/2;
	movex = (screen.width-wwidth)/2;
	attribute = "height="+wheight+",width="+wwidth+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	
	nw = window.open(URL,"sub",attribute);
	nw.moveTo(movex,movey);
	nw.focus();

}
