// JavaScript Document

function redirection()
{
	var url = window.location.toString();
	if ( url.indexOf("https") > -1 )
	{	
		var reg=new RegExp("https");
		url = url.replace(reg,"http");
		window.location.replace(url);
	}
}