// JavaScript Documentfunction click() {
//
// Evento al mover el ratón::::::::::::
function click() {
	if (event.button == 2) {
		alert('Copyrigth')
	}
}
//
document.onmousedown = click
// Fin.
//Funcion para abrir ventanas:
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = true;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

//Fin.