function goElseWhere() 
{ 
 
 var src = window.location.protocol;
 if(src == "http:")
 {
	var oldURL = window.location.hostname + window.location.pathname; 
	var newURL = "https://" + oldURL; 
	window.location = newURL; 
 }
}
 