<!--
function popUp(URL,wName,w,h)
{
	 window.open(URL,wName,
	 	'toolbar=no,' +
	 	'location=no,' +
	 	'directories=no,' +
	 	'status=no,' +
	 	'menubar=no,' +
	 	'scrollbars=no,' +
	 	'resizable=no,' +
	 	'copyhistory=no,' +
	 	'titlebar=no,' +
	 	'width=' + w + ',' +
	 	'height=' + h + ',' +
	 	'left=' + ((screen.width / 2)-(w/2)) + ',' +
	 	'top=' + ((screen.height / 2)-(h/2)) + ',' +
	 	'screenX=' + ((screen.width / 2)-(w/2)) + ',' +
	 	'screenY=' + ((screen.height / 2)-(h/2)));
}

//-->
