document.onmousedown=click;
if (document.layers) window.captureEvents (Event.MOUSEDOWN); window.onmousedown=click;
function click(e){
if (navigator.appName == 'Netscape'){
		if (e.which != 1){
		alert("Images & Content are Copyright protected by ABC School Vending Supply, Inc.");
		return false;}
} else if (navigator.appName == "Microsoft Internet Explorer") {
		if (event.button != 1){
		alert("Images & Content are Copyright protected by ABC School Vending Supply, Inc.");
		return false;}
} // end if
} // end function				