<!--
function popUp( url )
{
	var height = 480;
	var width = 620;
	var Options = ",status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=no,screenX=0,screenY=0,left=0,top=0";
	var popWindow = window.open(url,'','width=' + width + ',height=' + height + Options);
	popWindow.focus();
}
//-->

