var imgdir;
var sitedir;
var securedir;
var homedir;

localPath = "";

if (window.homepage)
{
imgdir = localPath + "htdocs/images/";
sitedir = localPath + "htdocs/";
securedir = localPath + "htdocs/";
homedir = localPath + "";
}
else if (window.absolutepage)
{
imgdir = "http://www.statecentercu.com/htdocs/images/";
sitedir = "http://www.statecentercu.com/htdocs/";
securedir = "http://www.statecentercu.com/htdocs/";
homedir = "http://www.statecentercu.com/";
}
else if (window.securepage)
{
imgdir = "https://www.statecentercu.com/htdocs/images/";
sitedir = "https://www.statecentercu.com/htdocs/";
securedir = "https://www.statecentercu.com/htdocs/";
homedir = "https://www.statecentercu.com/";
}
else if (window.formpage)
{
imgdir = localPath + "../htdocs/images/";
sitedir = localPath + "../htdocs/";
securedir = localPath + "../htdocs/";
homedir = localPath + "../";
}
else
{
imgdir = localPath + "../images/";
sitedir = localPath + "../";
securedir = localPath + "../";
homedir = localPath + "../../";
}

var pageurl = document.URL;
if(/statecentercu\.org/.test(pageurl)&&!/staging/.test(pageurl)&&!/diwebdev/.test(pageurl)){
	document.location.replace(pageurl.replace(/^http(s)?:\/\/[a-z0-9-.]+/,'https://www.statecentercu.com'));
}
