function OpenSite(theURL,winName)
{
	var top = ((screen.height - 800) / 2);
	var left = ((screen.width - 840) / 2);
	
	features2 = "toolbar=yes,location=yes,menubar=yes,scrollbars=yes,resizable=yes,width=840,height=700"
	features = "top=" + top + ",left=" + left + ",toolbar=no,location=no,menubar=yes,scrollbars=yes,resizable=yes,width=840,height=640"
	window.open(theURL,winName,features);
}
window.focus();

function OpenSite2(theURL,winName,width,height)
{
	var top = ((screen.height - height) / 2);
	var left = ((screen.width - width) / 2);
	
	features2 = "toolbar=yes,location=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height
	features = "top=" + top + ",left=" + left + ",toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height
	window.open(theURL,winName,features);
}




