// JavaScript Document

/* This function controls the rolover effects on the navbar
running across the top of the home page */
function navbarRollover(cell){
	document.getElementById(cell).style.backgroundColor='#cccccc';
}

function navbarRollout(cell){
	document.getElementById(cell).style.backgroundColor='#ffffff';
}

function showYear(){
	var yr = new Date()
	var year = yr.getFullYear()
	document.write(year)
}

function bigPic(img,w,h){
	window.open("../htm/"+img+".htm","page","width="+w+",height="+h+",position=absolute,top=100px,left=100px")
}

<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Please contact Harry for a copy.";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert();
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

