<!--
// (@)CopyRight,2000: Notarnet

var boolN,boolIE;
boolN=false;
boolIE=false;
if (document.layers) boolN=true;
if (document.all) boolIE=true;

function fRaton(e) {
if (boolN && (e.which == 3 || e.which == 2)) {
	alert("Notarnet S.L.\n");
	return false;
}
else if (boolIE && (event.button == 2 || event.button == 3)) {
//	alert("Notarnet S.L.\n");
	//return false;
}
return true;
}

//document.onmousedown=fRaton;

//-->
