if (top !=self) 
   top.location=self.location; 

// If my page is inside a frame, open another browser for my page.
function jhBeOnTop() {
   if (top != self) {
      winOofA = window.open(self.location) ;
      winOofA.focus() ; }
}



function jhGoToURL(theOBJ) {

   if (theOBJ.selectedIndex == 0 || theOBJ.options[theOBJ.selectedIndex].value == "x")
      return ;

   location = theOBJ.options[theOBJ.selectedIndex].value ;
}



function jhNavList0() {

   jhURLs = [
      ["x", "Locate a topic from this site."],
      ["/mission.htm", "About the O of A"],
      ["/contact.htm", "Contact Us"],
      ["/news", "Latest News"],
      ["/qa", "Questions You Should Ask"],
      ["/reports.htm", "Reports"],
      ["/reports.htm#dist", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;District Reports"],
      ["/reports.htm#school", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;School Report Cards"],
      ["/reports.htm#state", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;State Report"],
      ["/ospr", "School Review (OSPR)"],
      ["/guestbook.asp", "Sign Guest Book"],
      ["/links.htm", "Useful Links"]
   ];


   document.write("<select name=\"urlshortcut\" size=\"1\" onchange=\"jhGoToURL(this);\">");

   for (i=0;i<jhURLs.length;i++) {
      document.write("<option value=\"" + jhURLs[i][0] + "\">" + jhURLs[i][1] + "</option>\n");
   }

   document.write("</select>");
}



function jhBottomLinks() {
   document.write("<hr size=\"1\" width=\"750\"><p><font face=\"Arial, Geneva, Helvetica\" size=\"1\"><strong>" + 
                  "<a href=\"/mission.htm\">About Us</a> - " + 
                  "<a href=\"/contact.htm\">Contact Us</a> - " + 
                  "<a href=\"/guestbook.asp\">Guest Book</a> - " + 
                  "<a href=\"/\">Home</a> - " + 
                  "<a href=\"/news\">News</a> - " + 
                  "<a href=\"/qa\">Questions</a> - " + 
                  "<a href=\"/reports.htm\">Reports</a> - " + 
                  "<a href=\"/links.htm\">Useful Links</a>" +
                  "</strong></font>");
}