<!--
var message="Contact us for more information";
function click(e)
{
	//in IE events are part of the DOM
	if (document.all) {
		if (event.button==2) {
			alert(message);
			return false;
		}
	}
	
	//e is an hidden variable representing which mouse button 
	//the which property is used to find out what the button value is  
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}


//Netscape needs to be told to always check for the mousedown event

if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}

//initializing the onmousedown event
//it will call click
document.onmousedown=click;
// --> 