function keepIn(parentHREF){
    if (top.location.href != parentHREF) {
      startPage();
    }
}

function startPage(){
  if (top.location.pathname != "/mod_perl/framepage.cgi") {  
    alert('Bookmark only http://www.gidep.org/ for future visits.\n\nThis page is part of a framed web site -- the URL will only refer to this initial page.');
    var self = top.location.pathname;
    location.replace("http://www.gidep.org/mod_perl/framepage.cgi?pg=" + self);
  }
}


