function dns()
{
  var docref = document.URL

  a = docref.indexOf('//')
  

  var ref = docref.substr(a + 2, docref.length)

  return ref
}

var homeDNS = dns()

function goNonSecure()
  {
    

  var docref = document.URL

  a = docref.indexOf(':')
  
  var ref = docref.substr(0, a)

  

  if (ref == "https") 


	{location.replace("http://" + homeDNS)} 


}

//goNonSecure();
