<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// THESE ARE SIDEBAR OPTIONS YOU CAN TURN ON AND OFF

var showimage_1		= "no"		// SHOW 1ST SIDEBAR IMAGE
var showarea_1		= "yes"		// SHOW THE 1ST PARAGRAPH
var showarea_2		= "no"		// SHOW THE 2ND PARAGRAPH
var showlinks		= "yes"		// SHOW GALLERY LINKS
var movedown		= "2"		// SIDEBAR SPACE FROM TOP
var sidewidth		= "200"		// SIDEBAR WIDTH - ALSO EDIT THE CSS SIDEBAR WIDTH
var pageheight		= "150"		// ADD EXTRA HEIGHT TO ALL PAGES WITH A SIDEBAR


document.write('<img src="picts/spacer.gif" height="'+movedown+'" width="'+sidewidth+'"><br>');




// 1ST NOTES AREA

   if (showarea_1 == "yes") {

document.write('<fieldset class="sidebarfield"><legend>');

document.write('<span class="sidebartitle">Photography</span></legend>');

document.write('The area around Bosebuck Mountain Camps provides so many "Postcards" just waiting to happen: Gorgeous sunsets and moonrises, thundering waterfalls, sparkling streams, fall foliage, wildflowers and, of course, wildlife. Not to mention action shots of your favorite fisherman or kayaker. Taking beautiful photography here is hardly a challenge!<br>');

document.write('<a href="gallery_scenic.html" class="sidelink">Click Here to visit our Photo Galleries for more...</a>');

document.write('</fieldset>');

document.write('<br>');
}

// END FIRST NOTES AREA







// GALLERY LINKS


   if (showlinks == "yes") {
document.write('<span class="linkfont">');

document.write('<a href="gallery_wildlife.html" class="sidelink">Wildlife Gallery</a><br>');
document.write('<a href="gallery_scenic.html" class="sidelink">Scenic Gallery</a><br>');
document.write('<a href="gallery_bosebuck.html" class="sidelink">Camp Gallery</a><br>');
document.write('<a href="gallery_1930.html" class="sidelink">Old Time Gallery</a><br>');
document.write('<a href="gallery_fishing.html" class="sidelink">Fishing Gallery</a><br>');
document.write('<a href="gallery_hunting.html" class="sidelink">Hunting Gallery</a><br>');
document.write('<a href="gallery_winter.html" class="sidelink">Winter Gallery</a><br>');
document.write('<a href="slideshow.htm" class="sidelink">Slide Show</a><br>');

document.write('</span>');
}











// IMAGE AREA

   if (showimage_1 == "yes") {
document.write('<br><TABLE cellpadding="0" cellspacing="0" border="0"><tr><td class="borders">');
document.write('<IMG SRC="picts/sidebar.jpg" border="0"><br>');
document.write('</td></tr></table><br>');
}






// 2ND NOTES AREA
   if (showarea_2 == "yes") {

document.write('<fieldset class="sidebarfield"><legend>');

document.write('<span class="sidebartitle">Optional Notes:</span></legend>');

document.write('This area is for notes or links. Edit the sidebar.js to update this text or switch this off. ');

document.write('<a href="about.htm" class="sidelink">Click for more...</a>');

document.write('</fieldset>');

document.write('<br><br>');
}
// END SECOND NOTES AREA





document.write('<img src="picts/spacer.gif" height="'+pageheight+'" width="130"><br>');



//  End -->