<!--
  function frameMe() {
    //name of the frameset page (be sure to add path info)
    var frameset = "index.html";

    //name of the frame to load document into
    var frame = "content";

    page = new String(self.document.location.pathname);
    if(window.name != frame) {
      var contents = frameset + "?" + page + "&" + frame;
      top.location.replace(contents);
    } 
    return;
  }
  frameMe();
//-->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->