<!-- Begin

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


var zoom 		= "yes"		// SHOW ZOOM BUTTONS yes/no
var right_click_on	= "yes"		// RIGHT CLICK PROTECTION ON
var imagewidth		= "40"		// WIDTH OF THE SIDEBAR IMAGES
var imageheight		= "40"		// HEIGHT OF THE SIDEBAR IMAGES
var spacerheight	= "8"		// SPACING BETWEEN IMAGES




document.write('<div id="galmenu" class="printhide">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center">');
document.write('<br><br>');



// START GALLERY MENU LINKS


document.write('<a href="gallery1.htm">');
document.write('<img src="picts/menu_gallery1.jpg" width="'+imagewidth+'" height="'+imageheight+'" border="0" vspace="2" class="Galborder"></a><br>');
document.write('<img src="picts/spacer.gif" width="5" height="'+spacerheight+'"><br>');




document.write('<a href="gallery2.htm">');
document.write('<img src="picts/menu_gallery2.jpg" width="'+imagewidth+'" height="'+imageheight+'" border="0" vspace="2" class="Galborder"></a><br>');
document.write('<img src="picts/spacer.gif" width="5" height="'+spacerheight+'"><br>');




// NOTE: COPY AND PASTE THE NEXT 3 LINES ABOVE OR BELOW TO ADD A LINK




document.write('<a href="gallery3.htm">');
document.write('<img src="picts/menu_gallery3.jpg" width="'+imagewidth+'" height="'+imageheight+'" border="0" vspace="2" class="Galborder"></a><br>');
document.write('<img src="picts/spacer.gif" width="5" height="'+spacerheight+'"><br>');








// START RIGHT CLICK PROTECTION

   if (right_click_on == "yes") {
document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">')
document.write('<script language="JavaScript">')
document.write('function noRightClick() {')
document.write('if (event.button==2) {')
document.write('alert(\'You may not right mouse click this page.\')')
document.write('}')
document.write('}')
document.write('document.onmousedown=noRightClick')
document.write('</script>')
}

// END RIGHT CLICK PROTECTION








// START ZOOM CODE

   if (zoom == "yes") {
browser_version= parseInt(navigator.appVersion);
browser_type = navigator.appName;
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4) && (navigator.userAgent.indexOf("Windows") != -1)) {
document.write("<div id=\"ZOOM\">");
document.write("<a href=\"#\" onClick=\"MainImage.style.zoom='1.5'\"><img src=\"picts/zoom-up.gif\" border=\"0\" vspace=\"3\"></a><br>");
document.write("<a href=\"#\" onClick=\"MainImage.style.zoom='1.0'\"><img src=\"picts/zoom-down.gif\" border=\"0\" vspace=\"3\"></a><br>");
document.write("</div>");
} }

// -->

// END ZOOM CODE






// WIDTH SPACER (see CSS code)

document.write('<img src="picts/spacer.gif" height="2" width="50" border="0" class="Galsidebar"><br>');

document.write('</td></tr></table>');
document.write('</div>');
//  End -->