function click(e) {
	// Explorer
	if (IE)
		if (event.button == 2){
			accion() ;
			return false ;
		}

		// Netscape
		if (NS)
			if (e.which == 3) {
				accion() ;
				return false ;
			}
}

function accion() {
	window.status = 'Reportero Industrial Mexicano' ;
	if (IE) alert('Reportero Industrial Mexicano');
		return ;
}


var NS = (document.layers) ;
var IE = (document.all) ;
if (NS) document.captureEvents(Event.MOUSEDOWN) ;
	document.onmousedown = click ;
