function openHelp(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=400,height=250,resizable=yes,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openHelpFullScreen(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=800,height=600,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openPrintFullScreen(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=800,height=600,resizable=yes,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openGuide(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=530,height=550,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openSector(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=720,height=360,resizable=yes,scrollbars=auto,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openSectorCat(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=550,height=360,resizable=yes,scrollbars=auto,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openXray(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=410,height=205,resizable=yes,scrollbars=auto,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openQTR(theURL,theWindow)
{
	OpenPopup(theURL,theWindow,'top=20,left=20,width=750,height=550,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function openLookup(theURL,theWindow)
{
	OpenPopup(theURL+'&intro=true',theWindow,'top=20,left=20,width=390,height=370,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no');
}

function OpenPopup(sURL, sWindow, sParam) 
{
	TestString = 'failed';
	TestPopup = window.open(sURL,sWindow,sParam);
	TestString = TestPopup;
	if(TestString == 'failed' || TestString == null)
	{
		alert('Your browser does not allow pop up windows! Please change your browser settings.');
		return false;
	}
	else
		return true;
}

function doEml(sDom,sUsr,sName) 
{
	document.write('<a href=mailto:' + sUsr + '@' + sDom + '>' + sName + '</a>');
}