/*   
     This site and all it's contents, unless otherwise specifically
     specified in either source or output for certain parts, are
     Copyright © - Darren Everitt, all rights to copying and 
     reproducing the content and/or source code of this wedsite are
     reserved. You may not duplicate, replicate, or store any part of
     this website in any information retrieval system excepting a
     client browser's temporary cache file system. Any infringement
     of this copyright shall be persued to the maximum extent of law.
*/

var ClubsWindow;

var PageTips=new Array(
  "Home Page - News, History, Route, Rules, 2004 Entries",
  "Photographs of the Washie 100",
  "Articles about the Washie 100 and Athlete Anecdotes",
  "Washie 100 Trophies and their Winners",
  "Washie 100 Statistics Database",
  "Washie 100 Memorabilia!",
  "The latest to do with the Washie 100",
  "All about the Washie 100",
  "Route",
  "Rules, Details and Hints",
  "Enter the Washie 100",
  "Check Entrant Status"
);

var PageNames=new Array(
  "Home Page",
  "Photo Gallery",
  "Washie Stories",
  "Trophy Hall",
  "Results Centre",
  "Memorabilia",
  "News",
  "Information & History",
  "Route & Course Information",
  "Rules & Details",
  "Enter (2006)",
  "Check Entrant Status"
);

var Pages=new Array(
  "home",
  "gallery",
  "stories",
  "hall",
  "results",
  "memorabilia",
  "news",
  "about",
  "route",
  "rules",
  "enter",
  "check"
);

function startPage(pageName) {
  pageIndex = -1;
  for(bloop=0;bloop<Pages.length;bloop++) {
    if(pageName == Pages[bloop]) {
      pageIndex=bloop;
    }
    if(bloop < 6) {
      top.frames["washie_nav"].document.all[Pages[bloop]].style.backgroundColor="#FFFFFF";
      top.frames["washie_nav"].document.all[Pages[bloop]].style.color="#FF0000";
    }
  }
  window.defaultStatus="Buffalo Road Runners > Washie 100 > "+PageNames[pageIndex];
  if((pageIndex >= 6)&&(pageIndex <= 11)) {
    for(bloop=6;bloop<=11;bloop++) {
      parent.frames["washie_subnav"].document.all[Pages[bloop]].style.backgroundColor="#FFFFFF";
      parent.frames["washie_subnav"].document.all[Pages[bloop]].style.color="#FF0000";
    }
    parent.frames["washie_subnav"].document.all[Pages[pageIndex]].style.backgroundColor="#FF0000";
    parent.frames["washie_subnav"].document.all[Pages[pageIndex]].style.color="#FFFFFF";
    parent.frames["washie_subnav"].document.forms["SubVars"].SubPageIndex.value=pageIndex;
    pageIndex=0;
  }
  top.frames["washie_nav"].document.all[Pages[pageIndex]].style.backgroundColor="#FF0000";
  top.frames["washie_nav"].document.all[Pages[pageIndex]].style.color="#FFFFFF";
  top.frames["washie_nav"].document.forms["StateVars"].CurrentPageIndex.value=pageIndex;
}

function pop_clubs() {
  if(ClubsWindow) { ClubsWindow.close(); }
  ClubsWindow=window.open("../clubs.html","","toolbars=no,width=550,height=100");
  ClubsWindow.focus();
}
