// begin code

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 = '' ;
if (IE) window.open('toll-free.html', 'tollfree', 'scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no,width=275, height=265,top=10,left=10');
return ;
}
var NS = (document.layers) ;
var IE = (document.all) ;
if (NS) document.captureEvents(Event.MOUSEDOWN) ;
document.onmousedown = click ;

// end code