var DS510Util = new Object();

DS510Util.hrefHTTPS = function(el)
{
  if (window.location.protocol.toLowerCase() == "http:")
  {
    el.href = "../http-egress.php?tgt="+el.pathname;
  }
}

DS510Util.hrefHTTP = function(el)
{
  if (window.location.protocol.toLowerCase() == "https:")
  {
    el.href = "../https-egress.php?tgt="+el.pathname;
  }
}
