	url = document.location.href;
	if(url.indexOf('http:') >= 0){
		url = "https" + url.substring(4, url.length);
		window.location = url;
	}
