<!-- Begin

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


var right_click_on	= "no"		// 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="videomenu" class="printhide">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center">');
document.write('<br>');



// BACK BUTTON

document.write('<a href="video-home.htm">');
document.write('<img src="picts/backoff.jpg" border="0" width="42" height="42" onmouseover="this.src=\'picts/backon.jpg\'" onmouseout="this.src=\'picts/backoff.jpg\'"></a><br>');
document.write('<img src="picts/spacer.gif" width="5" height="'+spacerheight+'"><br>');





// START VIDEO MENU LINKS


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




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




document.write('<a href="video-3.htm">');
document.write('<img src="picts/menu_video3.jpg" width="'+imagewidth+'" height="'+imageheight+'" border="0" vspace="2" class="videoborder"></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="video-4.htm">');
document.write('<img src="picts/menu_video4.jpg" width="'+imagewidth+'" height="'+imageheight+'" border="0" vspace="2" class="videoborder"></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






// WIDTH SPACER (see CSS code)

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

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