// JavaScript Document

var invokePopup=true;
function doRegularPopup(url, thewidth, theheight)
{
	if (invokePopup) {
		theLeft=(screen.width)?(screen.width-800)/2:200;
		theTop=(screen.height)?(screen.height-600)/2:200;
		// Need to go a bit bigger or it chops off part of the image in IE
		biggerwidth=thewidth+40;
		biggerheight=theheight+40;
		settings="width=" + biggerwidth +", height=" +biggerheight +" top=" + theTop + ", left=" + theLeft + ", titlebar=yes, menubar=no, toolbar=no, location=no, directories=no, resizable=yes, scrollbars=no, status=no";
		mypopwin=window.open(url, 'myname', settings);
		mypopwin.focus();
	}
}