/*
*	pageprotect.js
*	Code to stop right clicking on page to bring up a menu.
*	Needs events.js loaded before this file.
*/

function mouseDown(e) 
{
	var rightClick = navigator.appName == "Microsoft Internet Explorer" ? event.button == 2 : e.button == 2;
		
  	if ( rightClick ) 
		alert("Copyright (c) 2010 excelptz.com  !\nAll HTML code and images contained within this document are the intellectual property of this company.  Please do not attempt to copy them.");
	
	return true;
}

if (parseInt(navigator.appVersion)>3) {
 addEvent(document, 'mousedown', mouseDown);
}