// JavaScript Document

//Mensaje de Click Derecho con el Mouse
	var mensaje="Michaelsoft";
	function Toussaint(A) {
		if (document.all) {
			if (event.button == 2) {
			alert(mensaje);
			return false;
			}
		}
		if (document.layers) {
			if (A.which == 3) {
			alert(mensaje);
			return false;
			}
		}
	}
	if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	}
	document.onmousedown=Toussaint;