// quick-nav.js
// Shows recently updated pages. Only used by index.htm
// Oct 5/04
// Feb 3/05 - Added Ice2 page
// Feb 19/05 - Display list alphabetically & added mailto.
// Mar 7/05  - Added Motoxice (Motorcycle ice racing)
// Mar 22/05 - Added MotoxiceLV (Motorcycle ice racing - LakeView Lodge)
// May 20/05 - Added MotoxAti (MotoCross - Atikokan)
// Jul 30/05 - Added TorTrip3 (a/b/c)
// Jul 31/05 - Added Dragons (Dragon Boat races)
// Aug 9/05  - Added MotoxAti2 (a/b)
// Sep 5/05  - Added FallFairs (listed as Summer & Fall Fairs).
// Sep 15/05 - Changed ClubPix url to tbaytel.net
// Sep 21/05 - Added MotoxAti3
// Sep 25/05 - Added CarShow2
// Oct 17/05 - Added MotoxAti4
// Nov 21/05 - Added Airborne.
// Jan 1/06  - Added weddings.
// Jan 6/06  - Deleted weddings
// Mar 7/06  - Added Projects.
// Mar 18/06 - Added Bands.
// Mar 24/06 - Added Skiing
// May 12/06 - Added Industrial.
// Jun 9/06  - Added AirShow.
// Jul 7/06  - Added Duluth AirShow
// Jul 29/06 - Added Dragons_GM
// Nov 17/06 - Moved revision date info here after switching to IFrames on main page.
// Dec 17/06 - added TorTrip4
// Jan 21/07 - Added Ice3 (ice racing)
// Jan 31/07 - Added FS1 (figure skating)
// Feb 1/07  - Moved VAR date values to rev-date.js (easier to maintain).
// Apr 28/07 - Added WakeBoard
// Sep 15/07 - Added Tor5
// Sep 17/07 - Added Dragons06
// Sep 19/07 - Added SaR
// Jul 24/07 - Added CityHallReno & dairshow06
// Jul 29/08 - Added EastCoast3
// Oct 2/08  - Added Sarex08
// Nov 24/08 - Added Trillium08
// Aug 4/09  - Added Eastcoast 4
// Aug 5/09  - Added Dragons07 & Air2You
// Aug 7/09  - Added CCCF  Cross Canada Century Flight
// Sep 6/09  - Added HawkOne
// Oct 1/09  - Updated Air2You - moved to its own site.
// Dec 8/09  - Removed Air2You, Carshow & Carshow2
// Sep 12/10 - Added Air2you - no longer has own site.


// DashedDate not used anymore - show xxx_d date instead (from rev-dates.js)
function DashedDate(Lastyymmdd) {
//    var Lastyymmdd;
  var Lastymd = "" + Lastyymmdd;
  var LastymdDashed = Lastymd.substring(0,4) + "-" + Lastymd.substring(4,6) + "-" + Lastymd.substring(6,8);
  return LastymdDashed;
}

function RecentPages() {
  var Lastyymmdd = 20040101;
  var UpdatedPages=0;
  // Build todays date in yyymmdd format - used by index page to determine changed pages.
  // Changed Aug 6/04 to be a date "RecentPeriod" months earlier (recently updated pages).
  // Also change in misc.js
  var RecentPeriod = 3;
  var Today = new Date();
  var LastYY = Today.getFullYear();
  var LastMM = 1 + Today.getMonth();
  var TempMM = LastMM - RecentPeriod;
  if (TempMM < 1) {
    TempMM = LastMM + 12 - RecentPeriod;
    LastYY = LastYY - 1;
  }
  if (TempMM < 10) {
    TempMM = "0" + TempMM;
  }
  var LastDAY = Today.getDate();
  if (LastDAY < 10) {
    LastDAY = "0" + LastDAY;
  }
  LastYY = "" + LastYY;
  TempMM = "" + TempMM;
  Lastyymmdd = LastYY + TempMM + LastDAY;

  // Generate the Recent Updates window
updated=window.open("","","menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,hotkeys=no,top=1,left=1,width=195,height=210");
  //output HTML to remote window
  updated.document.open();
  updated.document.write("<html><head>");
  updated.document.write("<link Rel='StyleSheet' href='style.css' type='text/css'>");
  updated.document.write("<style type='text/css'>");
  updated.document.write("a:link {Color : white;}");
  updated.document.write("a:visited {Color : white;}");
  updated.document.write("a:hover {Color: yellow;}");
  updated.document.write("</style>");
  updated.document.write("<Title>Quick-Nav</Title>")
  updated.document.write("</Head>");
  updated.document.write("<Body bgcolor='#000000' Text='#dbdbdb'>");
  updated.document.write("<basefont size = '3'>");
  updated.document.write("<P Class='RegText2' Align=Center><Strong>Recently Updated</Strong><br>");
  updated.document.write("<P Class='RegText1'>Use these links to control<br>the main window.<br><br>");
//  updated.document.write("<P Class='RegText1'>Since: "+DashedDate(Lastyymmdd)+"<br><br>");

  updated.document.write("<script>resizeTo(220,260)<\/script>");


  if (Lastyymmdd <= Air2You) {
    updated.document.write("<P Class='RegText1'><A Href='air2you.htm' target='rcp_main'>Air2You</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Air2You_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Airborne) {
    updated.document.write("<P Class='RegText1'><A Href='airborne.htm' target='rcp_main'>Airborne</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Airborne_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= AirShow) {
    updated.document.write("<P Class='RegText1'><A Href='airshow.htm' target='rcp_main'>Air Show</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+AirShow_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Skiing) {
    updated.document.write("<P Class='RegText1'><A Href='skiing.htm' target='rcp_main'>Alpine Skiing</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Skiing_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= AroundHouse) {
    updated.document.write("<P Class='RegText1'><A Href='around.htm' target='rcp_main'>Around the House</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+AroundHouse_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= AroundTown) {
    updated.document.write("<P Class='RegText1'><A Href='aroundtown.htm' target='rcp_main'>Around Town</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+AroundTown_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Cascades) {
    updated.document.write("<P Class='RegText1'><A Href='cascades.htm' target='rcp_main'>Cascades Park</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Cascades_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= ChipZoo) {
    updated.document.write("<P Class='RegText1'><A Href='chipzoo.htm' target='rcp_main'>Chippewa Park</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+ChipZoo_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= CityHallReno) {
    updated.document.write("<P Class='RegText1'><A Href='city-hall-reno.htm' target='rcp_main'>City Hall Renovation</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+CityHallReno_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= CCCF) {
    updated.document.write("<P Class='RegText1'><A Href='centuryflight.htm' target='rcp_main'>Cross Canada Century Flight 2009</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+CCCF_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= DAirShow) {
    updated.document.write("<P Class='RegText1'><A Href='dairshow.htm' target='rcp_main'>Duluth Air Show 08</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+DAirShow_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= DAirShow06) {
    updated.document.write("<P Class='RegText1'><A Href='dairshow06.htm' target='rcp_main'>Duluth Air Show 06</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+DAirShow06_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Dragons) {
    updated.document.write("<P Class='RegText1'><A Href='dragons.htm' target='rcp_main'>Dragon Boats</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Dragons_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Dragons06) {
    updated.document.write("<P Class='RegText1'><A Href='dragons06.htm' target='rcp_main'>Dragon Boats 2006</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Dragons06_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Dragons_GM) {
    updated.document.write("<P Class='RegText1'><A Href='dragons_gm.htm' target='rcp_main'>Dragon Boats (Grand Marais)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Dragons_GM_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Dragons_GM06) {
    updated.document.write("<P Class='RegText1'><A Href='dragons_gm.htm' target='rcp_main'>Dragon Boats (Grand Marais)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Dragons_GM06_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Dragons07) {
    updated.document.write("<P Class='RegText1'><A Href='dragons.htm' target='rcp_main'>Dragon Boats 2007</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Dragons07_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East2a) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast2a.htm' target='rcp_main'>East Coast II.a</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East2a_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East2b) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast2b.htm' target='rcp_main'>East Coast II.b</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East2b_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East2c) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast2c.htm' target='rcp_main'>East Coast II.c</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East2c_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East3a) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast3a.htm' target='rcp_main'>East Coast III.a</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East3a_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East3b) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast3b.htm' target='rcp_main'>East Coast III.b</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East3b_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East4a) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast4a.htm' target='rcp_main'>East Coast IV.a</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East4a_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= East4b) {
    updated.document.write("<P Class='RegText1'><A Href='eastcoast4b.htm' target='rcp_main'>East Coast IV.b</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+East4b_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Elsewhere) {
    updated.document.write("<P Class='RegText1'><A Href='elsewhere.htm' target='rcp_main'>Elsewhere</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Elsewhere_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Trillium08) {
    updated.document.write("<P Class='RegText1'><A Href='trillium08.htm' target='rcp_main'>EMO Trillium 2008</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Trillium08_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Fireworks) {
    updated.document.write("<P Class='RegText1'><A Href='fireworks.htm' target='rcp_main'>Fireworks</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Fireworks_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Friendship) {
    updated.document.write("<P Class='RegText1'><A Href='friendship.htm' target='rcp_main'>Friendship Gardens</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Friendship_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= HawkOne) {
    updated.document.write("<P Class='RegText1'><A Href='hawkone.htm' target='rcp_main'>Hawk One</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+HawkOne_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Ice) {
    updated.document.write("<P Class='RegText1'><A Href='iceraces.htm' target='rcp_main'>Ice Racing 1</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Ice_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Ice2) {
    updated.document.write("<P Class='RegText1'><A Href='iceraces2.htm' target='rcp_main'>Ice Racing 2</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Ice2_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Industrial) {
    updated.document.write("<P Class='RegText1'><A Href='industrial.htm' target='rcp_main'>Industrial Sites</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Industrial_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= KFalls) {
    updated.document.write("<P Class='RegText1'><A Href='kakabeka.htm' target='rcp_main'>Kakabeka Falls</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+KFalls_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= KFlying) {
    updated.document.write("<P Class='RegText1'><A Href='kakabekaflyingdays.htm' target='rcp_main'>Kakabeka Fly Days</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+KFlying_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Kites) {
    updated.document.write("<P Class='RegText1'><A Href='kitefest.htm' target='rcp_main'>Kite Festival</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Kites_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Marina) {
    updated.document.write("<P Class='RegText1'><A Href='marinapark.htm' target='rcp_main'>Marina Park</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Marina_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= McKellar) {
    updated.document.write("<P Class='RegText1'><A Href='mckellar.htm' target='rcp_main'>McKellar Island</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+McKellar_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Mission) {
    updated.document.write("<P Class='RegText1'><A Href='mission.htm' target='rcp_main'>Mission Island</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Mission_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= MotoxAti) {
    updated.document.write("<P Class='RegText1'><A Href='motox-ati.htm' target='rcp_main'>Motocross (Atikokan)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+MotoxAti_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= MotoxAti2a) {
    updated.document.write("<P Class='RegText1'><A Href='motox-ati2a.htm' target='rcp_main'>Motocross (Atikokan-2a)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+MotoxAti2a_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= MotoxAti2b) {
    updated.document.write("<P Class='RegText1'><A Href='motox-ati2b.htm' target='rcp_main'>Motocross (Atikokan-2b)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+MotoxAti2b_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= MotoxAti3) {
    updated.document.write("<P Class='RegText1'><A Href='motox-ati3.htm' target='rcp_main'>Motocross (Atikokan-3)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+MotoxAti3_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= MotoxAti4) {
    updated.document.write("<P Class='RegText1'><A Href='motox-ati4.htm' target='rcp_main'>Motocross (Atikokan-4)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+MotoxAti4_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Motoxice) {
    updated.document.write("<P Class='RegText1'><A Href='motoxice.htm' target='rcp_main'>Motorcycle Ice<br>Racing (Brule Bay)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Motoxice_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= MotoxiceLV) {
    updated.document.write("<P Class='RegText1'><A Href='motoxice-lv.htm' target='rcp_main'>Motorcycle Ice<br>Racing (LakeView)</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+MotoxiceLV_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= NovaScotia) {
    updated.document.write("<P Class='RegText1'><A Href='novascotia.htm' target='rcp_main'>Nova Scotia Trip</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+NovaScotia_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Riverfest) {
    updated.document.write("<P Class='RegText1'><A Href='riverfest.htm' target='rcp_main'>Riverfest</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Riverfest_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= SaR) {
    updated.document.write("<P Class='RegText1'><A Href='sar.htm' target='rcp_main'>Search &amp; Rescue</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+SaR_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Sarex08) {
    updated.document.write("<P Class='RegText1'><A Href='sarex08.htm' target='rcp_main'>SAREX 2008</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Sarex08_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Sleeping) {
    updated.document.write("<P Class='RegText1'><A Href='sibley.htm' target='rcp_main'>Sibley Peninsula</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Sleeping_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Silver) {
    updated.document.write("<P Class='RegText1'><A Href='silverislet.htm' target='rcp_main'>Silver Islet</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Silver_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Projects) {
    updated.document.write("<P Class='RegText1'><A Href='projects.htm' target='rcp_main'>Special Projects</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Projects_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= FallFairs) {
    updated.document.write("<P Class='RegText1'><A Href='fallfairs.htm' target='rcp_main'>Summer &amp; Fall Fairs</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+FallFairs_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip.htm' target='rcp_main'>Toronto Trip</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor2) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip2.htm' target='rcp_main'>Toronto Trip II</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor2_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor3a) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip3a.htm' target='rcp_main'>Toronto Trip III.a</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor3a_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor3b) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip3b.htm' target='rcp_main'>Toronto Trip III.b</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor3b_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor3c) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip3c.htm' target='rcp_main'>Toronto Trip III.c</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor3c_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor4) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip4.htm' target='rcp_main'>Toronto Trip IV</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor4_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Tor5) {
    updated.document.write("<P Class='RegText1'><A Href='tortrip5.htm' target='rcp_main'>Toronto Trip V</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Tor5_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= WakeBoard) {
    updated.document.write("<P Class='RegText1'><A Href='wakeboard.htm' target='rcp_main'>Wakeboard Festival</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+WakeBoard_d+")");
    UpdatedPages=1;
  }
  if (Lastyymmdd <= Links) {
    updated.document.write("<P Class='RegText1'><Br><A Href='links.htm' target='rcp_main'>Photo Links</a><br>");
    updated.document.write("<P Class='SmlText1'>&nbsp;&nbsp;("+Links_d+")");
    UpdatedPages=1;
  }
  updated.document.write("<P Class='RegText1'><br><A Href='index.htm' target='rcp_main'>RCP Home Page</a>");
  updated.document.write("<P Class='RegText1'><br>What do you think of our quick navigation window?");
  updated.document.write("<A Href='mail&#116;&#111;:&#114;ob&#64;&#114;&#99;&#112;&#46;&#99;&#97;?subject=Quick-Nav'>");
  updated.document.write("<Img Border=2 Width=28 Height=19 Hspace=8 Align=Middle Src='graphics/hppmail.jpg'></A>");
  updated.document.write("</Body>");
  updated.document.write("</Html>");
  updated.document.close();
}


