Hola, Yusta.
A ver si esto te sirve:
<a href="tupagina.html" onmousedown="return boton(event)">Enlace</a>
La función sería algo así:
Código PHP:
function boton(e) {
if(e.button==1) return true
if(e.button==2)
alert('botón derecho pulsado');
}
Saludos,