
function openpop(url)
{
	screenWidth = window.screen.availWidth;
	screenHeight = window.screen.availHeight;
	
	windowWidth = 800;
	windowHeight = 600;
	windowLeft = ( screenWidth - windowWidth ) / 2;
	windowTop = ( screenHeight - windowHeight ) / 2;
	
	p=window.open( url, 'zoom',"left=" + windowLeft + ",top=" + windowTop + ",height=" + windowHeight + ",width=" + windowWidth + ",scrollbars=no"); p.focus();

}