
  var frameName;
  var locationPath = location.pathname.toLowerCase();
  var vysaHomeSiteURL = location.hostname.toLowerCase();

  if (vysaHomeSiteURL.indexOf("www.vestalsoccer.com") < 0)
  {
    vysaHomeSiteURL  = "http://www.vestalsoccer.com";
    locationPathName = location.href;
  }
  else
  {
    vysaHomeSiteURL  = "/";
    vysaHomeSiteURL  = "http://www.vestalsoccer.com";
    locationPathName = location.pathname;
  }

  if (locationPath.indexOf("vysaheader.htm") >= 0)
    frameName = "vysaRtopFrame";
  else if (locationPath.indexOf("vysacontents.htm") >= 0)
    frameName = "vysaLeftFrame";
  else if ( (locationPath.indexOf("index.htm") >= 0) ||
            (locationPath == "/~vysa/") ||
            (locationPath == "/~vysa") ||
            (locationPath == "/vysa/") ||
            (locationPath == "/vysa") )
    frameName = "vysaFramesPage";
  else
    frameName = "vysaMainFrame";

  if ( ((parent == self) || (name != frameName)) &&
       (frameName != "vysaFramesPage") )
  {
    if (frameName == "vysaMainFrame")
      location = vysaHomeSiteURL + "/vysaIndex.asp?html=" + locationPathName;
    else
      location = vysaHomeSiteURL + "/index.htm";
  }
  else if ((parent != self) && (frameName == "vysaFramesPage"))
  {
    location = vysaHomeSiteURL + "/vysaLogo.htm"
    window.open(vysaHomeSiteURL + "/index.htm");
  }
