// *** WalySoft ***

function ws_events(e) {
  cText = 'Pérgamo OPAC Web © Copyright 1998-2003 by WalySoft';
  if ( document.all && (event.button==2) ) alert( cText );
  if ( document.layers ) {
  	if ( e.which==3 ) { 
  		alert( cText );  		
		return false;
	}
  }
}

document.onmousedown = ws_events;
if ( document.layers ) document.captureEvents(Event.MOUSEDOWN);
