var regurl = function (http_url,https_url,paramURL)
{
	var urlhref   = window.location.pathname;
	var urlhost   = document.domain;

	if ( (urlhref.indexOf("users/register") != -1) || (urlhref.indexOf("users/login") != -1) || (urlhref.indexOf("users/changepassword") != -1) || (urlhref.indexOf("users/forgotpassword") != -1) || (urlhref.indexOf("users/myprofile") != -1) || (urlhref.indexOf("Friends-Corner/Personalized-Gift-Labels") != -1)|| (urlhref.indexOf("/mgm/signup") != -1)|| (urlhref.indexOf("Friends-Corner/Get-together-for-25-off") != -1))
	{
		if (urlhost == http_url)
		{
			window.location.href = "https://secure.malts.com" + urlhref + window.location.search;
		}
	} 
	else 
	{
		if (urlhost == https_url)
		{
			window.location.href = "http://www.malts.com" + urlhref + window.location.search;
		}
	}
}
window.onload = regurl('www.malts.com','secure.malts.com','');

