function right(evnt) {
	// Blocco il pulsante destro del mouse MSIE e Netscape
	if (navigator.appName.toUpperCase().match("NETSCAPE") != null) {
		if (evnt.which >= 2){
			alert("PDA Studio Srl © 2007\n");
			return false;
		}		
	}
	else {
		if (event.button>=2) {
			alert("PDA Studio Srl © 2007\n");
			return false;
		}
	}
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

function SendStr(str,pag) {

	document.frmStrRicerca.action = pag + "?" + str
	document.frmStrRicerca.target = "_self"
	document.frmStrRicerca.submit()
}
