function doZoomWindow(theURL)
{
	nTop = screen.height / 2;
	nLeft = screen.width / 2;
	nHeight = screen.height;
	nWidth = screen.width;

	window.open(theURL, 'ZoomWindow', 'top=' + nTop + ', left=' + nLeft + ', width=' + nWidth + ', height=' + nHeight + ', scrollbars=1')
}
