var s_url = location.href;

if(s_url.substr(0,7)=='http://') {
  s_url = s_url.replace('://www.','://')
  s_url = s_url.replace('http://','https://')
  //alert(s_url);
  location.href = s_url;
}









