//this code will automatically reload this page in non-secure mode
var strCurrentLocation = this.location.href;
//alert(strCurrentLocation);
if (strCurrentLocation.substring(0,5) == "https")
{
	strNewLocation = "http" + strCurrentLocation.substring(5, strCurrentLocation.length);
	//alert(strNewLocation);
	this.location=strNewLocation;
}

