// JavaScript Document
//		
//  alert("got here:"+window.location.pathname);
//alert ("sarchshows: "+window.location.pathname.search("client.htm"));
window.onload = function()
{
  if(window.location.pathname.search("order") > -1)
  {
//  alert("got somepin");
    if(window.location.protocol.search("s") == -1)
    {
      rewriteSecure();
    }
  }
  else
  {
    if(window.location.protocol.search("s") > -1)
    {
      rewriteStandard();
    }
  }
}

function rewriteSecure()
{
  window.location = "https://"+window.location.hostname+"/"+window.location.pathname;
//  window.location = "https://"+window.location.hostname+window.location.pathname;
}

function rewriteStandard()
{
  window.location = "http://"+window.location.hostname+"/"+window.location.pathname;
//  window.location = "http://"+window.location.hostname+window.location.pathname;
}

