
  function InitialSync()
  {
    if (self == top)
    {
      selectedPage = location.href.substr(location.href.lastIndexOf("/") + 1);
      // alert(selectedPage);
      if (selectedPage == "contents.html")
      {
        location.href = "index.html";
      }
      else
      {
        location.href = "index.html?selectedPage=" + selectedPage;
      }
    }
  }

 InitialSync();