function frame_warning(page_name,home_dir)
{
  if(self.location==top.location) {
    if (!home_dir) {
      path="";
    }
    else {
      path=home_dir + "/" ;
    }
    var msg="<p class=\"warn\">";
    msg = msg + "For easy access to ";
    msg = msg + "the content of our web site, please visit the ";
    msg = msg + "<a href=\"" + path + "index.htm\">home&nbsp;page</a>";
    if (page_name) {
      msg = msg + " first. Then click on the \"" + page_name + "\" link to view this page.</p>";
    }
    document.write(msg);
  }
}
