<!--
function OpenWindow(url, name, toolbar, scrollbar, width, height, resizable) 
	{
	var wp = (screen.width - width -200) / 2;
	var hp = (screen.height - height) / 2;

	open(url, name, "top=" +wp+ ", left=" +hp+ ",toolbar=" +toolbar+ ",scrollbars=" +scrollbar+ ",width=" +width+ ",height=" +height +",resizable=" +resizable+ "").focus(); 
	}

//-->
