<!--
function newWindow(url, name, width, height, toolbar, status, scrollbar, resizable, menubar, location) {

	var posX = parseInt((screen.availWidth/2) - (width/2));
	var posY = parseInt((screen.availHeight/2) - (height/2));
	
	
	 var windowFeatures = "width=" + width + ",height=" + height + ",toolbar=" + toolbar + ",status=" + status + ",scrollbars=" + scrollbar + ",resizable=" + resizable + ",menubar=" + menubar + ",location=" + location + "screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "";
	 
	 if(window.myWindow){
		window.myWindow.close(); 
	 }
	 
	 myWindow = window.open(url, name, windowFeatures);
	 if(window.myWindow){
		window.myWindow.focus();
	 }
	 return false;
}
//-->