<!--
var strThisLoc, intIdPos, intUrlLen;

  if (top.location == self.location)
  {
    //deze pagina staat alleen in een window, niet in de frameset
    //dat mag alleen als de gebruiker daar voor gekozen heeft,
    //niet als hij van een ander domein, bijv. van een search engine, komt.
    if (document.referrer.indexOf("vangorcum.nl") == -1)
    {
      //"vangorcum.nl" not found, redirect to frameset builder
      strThisLoc = "" + this.location;
      intIdPos = strThisLoc.indexOf("ID=");
      if (intIdPos != -1)
      {
        intUrlLen = strThisLoc.length;
        strWantedID = strThisLoc.substr(intIdPos+3, intUrlLen-(intIdPos+3));
        //strRedirURL = "http://test.vangorcum.nl/snpage.asp?ID=" + strWantedID;  //snpage=Show Neat Page
        strRedirURL = "snpage.asp?ID=" + strWantedID;  //snpage=Show Neat Page
        //alert(strRedirURL);
        top.location = strRedirURL;
      }
    }
  }
//-->

