<!-- Deshabilita el botón derecho del ratón

if (!idioma) var idioma = 0;
mensaje_cabecera = "Copyright © 2000-2006. Herves-Vida. "
mensaje_pie = "Copyright © 2000-2006. <b>Herves-Vida</b>. "
var mensaje = new Array("Reservados todos los derechos.", "All rights reserved.", "Tous droits réservés.", "Alle Rechte vorbehalten.")
var mostrado = 0;

function mostrar()
	{
		if (mostrado == 0)
			{
				mostrado = 1;
				alert(mensaje_cabecera + mensaje[idioma]);
				return false;
			}
	}

function click(e)
	{ 
		if (document.all && event.button == 2)
			{ 
		    	alert(mensaje_cabecera + mensaje[idioma]);
				return false; 
		    }
		if (document.layers || (document.getElementById && !document.all))
			{ 
				if (e.which == 2 || e.which == 3)
					{ 
		   			 	mostrar(); 
     				} 
    		} 
   	} 

if (document.layers)
	{ 
    	document.captureEvents(Event.MOUSEDOWN); 
    }

document.onmousedown = click;

document.oncontextmenu = new Function("mostrar(); mostrado = 0; return false;");

// -->