
preventSSL();

function preventSSL()
{
	if(window.location.href.indexOf("https") > -1)
	{
		var url = window.location.href.replace("https:", "http:");
		window.location.href = url;
	}
}