
<!--
// Beginning of sitecheck js file
// This script tests to see if we are asking for a subdomain
// if so, transfers us to the sub folder
//
//copyright 2003 Brad Miller, BME Consulting 
var x_srvname
var xjamie
var xmatch
x_srvname = location.host		//get server name

//Check for strattonfunds
xmatch = (x_srvname.match("strattonfunds"))	//check if strattonfunds is in name
if (xmatch == null)				//If xmatch is empty (no match) then we continue
{
}
else							//we have a match, set location
{
	location="smf"
}

//Check for sempertrust
xmatch = (x_srvname.match("sempertrust"))	//check if strattonfunds is in name
if (xmatch == null)				//If xmatch is empty (no match) then we continue
{
}
else							//we have a match, set location
{
	location="semper"
}
// End of site check script
// -->
