
var currentLocation = location.href.toUpperCase();
var szWebPath = "http://www.addonmail.com"
	
// To set to maintenance mode, change the next value to true
var isMaintenance = false
//isMaintenance = true
if (isMaintenance)
{
	if (location.href.search(/maintenance.+/) == -1)
		location.href = szWebPath + "/maintenance.htm"
}
else
{
	if (location.href.search(/maintenance.+/) != -1)
		location.href = szWebPath
}
