<!--
	function popUpWindow(name){
		var puWidth = 500;
		var puHeight = 250;
		var puwin = window.open("#",name,"toolbar=no,resizable=yes,width="+puWidth+",height="+puHeight+"",true);
		puwin.moveTo((screen.availWidth/2)-puWidth/2,(screen.availHeight/2)-puHeight/2);
	}
//-->