<!--

var oldURL;

oldURL = window.location.toString();

if(oldURL.indexOf('https:') > -1)
{ 
	window.location = oldURL.replace('https:','http:');
}

//-->