<!--

function OpenWindow(url, w, h)
	{
	var x = (screen.width - w) / 2;
	var y = (screen.height - h) / 2;

	var str = "width="+w+", height="+h+", left="+x+", top="+y+", scrollbars=1";

	window.open(url, "newWindow", str);
	}

//-->
