<!-- var debug = true; 
function right(e) { 
	if (navigator.appName == 'Netscape' && (e.which == 3)){ 
		alert('All materials on this site are copyright©2000-2008 J. Sam Smith');
		return false;
		}
	if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { 
		alert('All materials on this site are copyright©2000-2008 J. Sam Smith');
		return false;
		}
		return true;
	}

if (!document.all && document.getElementById) {
		document.onmouseup=right;
}

if (document.layers) {
		window.captureEvents(Event.MOUSEDOWN);
		window.onmousedown=right;
	}
if (document.all)	{
		document.onmousedown=right;
	}
//-->
