<!--
function LaunchInCenter(url, name, height, width, scroll)
{
	var str = "height=" + height + ",innerHeight=" + height;
	str += ",width=" + width + ",innerWidth=" + width;
	if (window.screen)
		{
		var ah = screen.availHeight - 30;
		var aw = screen.availWidth - 10;
		var xc = (aw - width) / 2;
		var yc = (ah - height) / 2;
		str += ",toolobar=no,location=no,menubar=no,titlebar=no,left=" + xc + ",screenX=" + xc;
		str += ",top=" + yc + ",screenY=" + yc;
		str +=",scrollbars=" + scroll;
		}
	window.open(url, name, str);
	window.focus;
	return ;
}

//-->

