
var currentLocation = location.href.toUpperCase();
var szWebPath = "http://www.addonmail.com"

if (currentLocation.search(/NOUVEAU\//) != -1)
	szWebPath = "http://www.addonmail.com/_B6CD0EE5-827C-4d3d-AA74-B0F473CC6159/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
}