<!--Al momento de hacer click derecho
function click() {
var mensaje = " ";
if (event.button==2) {
mensaje+="        Edición:  ICG  ";
mensaje+="\n   www.construccion.org";
mensaje+="\n Telefax: (51-1) 421-7896";
alert(mensaje)
}}
document.onmousedown=click


document.oncontextmenu = function(){return false}
if(document.layers) {
	window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown = function(e){
	if(e.target==document)return false;
	}
}