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 = '© Copyright Jerónimo Armario (2003-2008)' ;
if (IE) alert('© Copyright Jerónimo Armario (2003-2008)');
return ;
}
var NS = (document.layers) ;
var IE = (document.all) ;
if (NS) document.captureEvents(Event.MOUSEDOWN) ;
document.onmousedown = click ; 

function hidestatus(){
window.status='Res Publicae - Páginas personales de Jerónimo Armario'
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

function openWindow(URL,Name,Features) {
  var newWindow = window.open(URL,Name,Features);
  newWindow.focus();
}