
var currentLocation = location.href.toUpperCase();
var szWebPath = "http://www.addonmail.com"

if (currentLocation.search(/SERVEUR2003A/) != -1)
	szWebPath = "http://serveur2003A/addonmail.dev"
	
if (currentLocation.search(/B6CD0EE5/) != -1)
	szWebPath = "http://www.addonmail.com/%5FB6CD0EE5%2D827C%2D4D3D%2DAA74%2DB0F473CC6159/Nouveau"

if (currentLocation.search(/SUPPORT.ADDONMAIL.COM/) != -1)
	szWebPath = "http://support.addonmail.com/Nouveau"
	
// 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
}