<!--

var ie4 = (document.all) ? 1:0;
var ns4 = (document.layers) ? 1:0;
var txt = "Copyright casadelguru (1998-2002)";
function mouseDown(e) {
	if (ns4 && (e.which==2 || e.which==3)) {
		//alert(txt);
		//return false;		
	}
	else if (ie4 && (event.button==2 || event.button==3)) {
		//alert(txt);
		//return false;
	}
	//return true;
}
if (ns4) document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = mouseDown;
window.onmousedown = mouseDown;

// -->
