//<!--"Copyright © 1999-2007 www.moorescode.com - Unlicensed Usage Is Strictly Prohibited - Created by David C Moores"-->
var html_debug2=false;
/* ======================================================================
NOTES: These functions disable clicking the right mouse button
====================================================================== */
var nav4 = window.Event ? true : false;
var clicks_disabled = false

if (nav4) {
  window.captureEvents(Event.MOUSEDOWN)
  window.onMouseDown = handleNav
}

function handleNav(e) {
	if(e.which == 3 && !html_debug2) {
   		//alert("Copyright © 2007 www.atlantichardchrome.com")
   		alert("Copyright © 2007 www.atlantichardchrome.com")
   		return false
	}
   return true
}


function handleIE() {
  var btnVal = event.button;
  if(btnVal != 1 && !html_debug2){
	alert("Copyright © 2007 www.atlantichardchrome.com")
  }
}


function foo() {
	if(nav4 == false){
	 	handleIE();
	 }
}
	
if (window.Event) // Navigator 4.0x
  document.captureEvents(Event.MOUSEUP | Event.MOUSEDOWN);
document.onmouseup = foo;
document.onmousedown = foo;
//<!--"Copyright © 1999-2007 www.moorescode.com - Unlicensed Usage Is Strictly Prohibited - Created by David C Moores"-->
