// JavaScripts.js - A JavaScript Page with JavaScript functions //
//                                                              //
// Called from all the pages!                                   //
//                                                              //
// Functions: page_menu = prints the menu for all the pages     // 
//                        except the Home Page                  //
//            page_footer = the footer for all the pages with   //
//                          a mail link to the webmaster and    // 
//                          the page updated date               //
//            email_brochure = the email address for the        //
//                             brochure                         //
//            email_cave_list = the email address for the       // 
//                              Restricted Cave List            //
//            email_gift_store = the email address for the      //
//                               Gift Store                     //
//                                                              //

function page_menu()
{

// *** For Gift Store subfolder - if true need to go back one level *** //
var gift_call = '"';
var calling_page = document.URL.indexOf('Gift2');
if (calling_page != -1)
{ var gift_call = '"../' };

document.write(' <IMG SRC='+gift_call+'Images/header_menu.gif" WIDTH="700" HEIGHT="115" ');
document.write(' ALIGN="center" ALT="Pennsylvania Cave Conservancy" BORDER="0" ');
document.write(' USEMAP="#header"> ');

// *** Navigation Menu Map Area start *** //
document.write(' <MAP NAME="header"> ');

document.write(' <AREA SHAPE="rect" COORDS="114,15,174,35" ');
document.write(' HREF='+gift_call+'Home.shtml" ALT="Home Page" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Return to the PCC Home Page'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="183,15,272,35" ');
document.write(' HREF='+gift_call+'Contacts.html" ALT="Contact Information" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Contact Information'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="280,15,339,35" ');
document.write(' HREF='+gift_call+'Links.html" ALT="Links Page" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Links to other Caving related Web Sites'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="348,15,499,35" ');
document.write(' HREF='+gift_call+'Grottos.html" ALT="Member Grottos" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Member Grottos of the PCC'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="507,15,692,35" ');
document.write(' HREF='+gift_call+'Caves_PA.html" ALT="Restricted Cave Listing" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Restricted Cave Access Listing for Pennsylvania'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="114,50,233,70" ');
document.write(' HREF='+gift_call+'General.html" ALT="General Information" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'General Information on the PCC'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="242,50,330,70" ');
document.write(' HREF='+gift_call+'Calendar.html" ALT="Calendar of Events" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Calendar of Events'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="339,50,398,70" ');
document.write(' HREF='+gift_call+'News.html" ALT="News Page" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'News Page'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="408,50,496,70" ');
document.write(' HREF='+gift_call+'Site_Map.html" ALT="Site Map" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Site Map of the PCC Web Site'; ");
document.write(' return true;"> ');

document.write(' <AREA SHAPE="rect" COORDS="504,50,622,70" ');
document.write(' HREF='+gift_call+'Whats_New.html" ALT="Whats New Page" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'Whats New on the PCC Web Site'; ");
document.write(' return true;"> ');

document.write(' </MAP> ');
}
// *** Navigation Menu Map Area end *** //


// ************************* //
function page_footer()
{
document.write(' <H5><HR NOSHADE SIZE="3" ');
document.write(' <BR>Copyright &#169 2000-2009 by The Pennsylvania Cave Conservancy, Inc. ');
document.write(' <BR>For more information contact: ');
document.write(' <A HREF="mailto:caverdave1@cox.net?subject=PCC_Web_Site" ');
document.write(' onClick="this.blur()"; ');
document.write(' onMouseOver="window.status=');
document.write(" 'E-Mail the PCC Webmaster'; ");
document.write(' return true;"> ');
document.write(' David Fricke</A></H5> ');

//*** Calculate the date this page was last modified ***//
//*** First make sure that there's a date to calculate - if zero, no date so skip ***//
if (Date.parse(document.lastModified) != 0)
{
{document.write('<H5>This page was last updated on '+(new Date(document.lastModified)).toGMTString()); }
}
} // end of page_footer function //


// ************************** //
// This section is for e-mail // 
// addresses - only need to   // 
// update this area           //
// ************************** //

// *** //
function email_brochure()
{
document.write('<A HREF="mailto:riverbat@eawireless.net?subject=PCC_Brochure"');
document.write('onMouseOver="window.status=');
document.write("'E-Mail George Bange'; ");
document.write('return true;">George Bange</A>');
}

// *** //
function email_cave_list()
{
document.write('<A HREF="mailto:bill@brockerhoffllc.com?');
document.write('subject=PCC_Restricted_Access_Cave_Listing"');
document.write('onClick="this.blur()"; onMouseOver="window.status=');
document.write("'E-Mail updates for the Restricted Access Cave Listing'; ");
document.write('return true;">Bill Herr</A>');
}

// *** //
function email_gift_store()
{
var calling_gift = document.URL.indexOf('Bumper');

document.write('<A HREF="mailto:riverbat@eawireless.net?');

if (calling_gift != -1)
{ document.write('subject=PCC_Bumper_Stickers"');}
else
{ document.write('subject=PCC_T-Shirts"');}

document.write('onMouseOver="window.status=');

if (calling_gift != -1)
{ document.write("'E-Mail questions about the Bumper Stickers'; ");}
else
{ document.write("'E-Mail questions about the T-Shirts'; ");}

document.write('return true;">Karen Bange</A>');
}

// ************************** //





