var newwin;
function doWin(url)
	{
	var screenWidth		=	(screen.width - 300) / 2;
	var screenHeight	=	(screen.height - 300) / 2;

	var winWidth		=	915;
	var winHeight		=	650;
	
	if(screen.width == 800)
		{
		winWidth  = 790;
		winHeight = 550;
		}
	
	page = "" + url;

	newwin = window.open(url,"NewPopUp","width="+winWidth+",height="+winHeight+",location=no,toolbar=no,resizable=yes,scrollbars=yes,directories=no,menubar=no,top=10,left=10");
	newwin.focus
	}

var popup;
function NewPopUp(url)
	{
	var winWidth		=	915;
	var winHeight		=	650;
	
	var screenWidth		=	(screen.width - winWidth) / 2;
	var screenHeight	=	(screen.height - winHeight) / 2;
	
	popup = window.open(url,"ClientPopUp","width="+winWidth+",height="+winHeight+",location=yes,toolbar=yes,resizable=yes,scrollbars=yes,directories=yes,menubar=yes,top="+screenHeight+",left="+screenWidth+"");
	popup.focus
	}