function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Il tasto destro del mouse è disabilitato");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

var i = 0;
var Speed = 100;
TextInput = new Object();
TotalTextInput =0;
TextInput[0]= "... Vela Club Hotel Residence Rodi Garganico";
var timer; 
var nspace = 130;
var msg = "";

function startBanner(i) { 

clearTimeout(timer); 

for (i =0 ; i < TotalTextInput+1; i++) { msg = msg + " " + TextInput[i]; } 
for (i=0; i < nspace; i++) { msg=" " + msg; } scrollMe(); }
function scrollMe() { window.status = msg; msg = msg.substring(1, msg.length) +  msg.substring(0,1); 
timer = setTimeout("scrollMe()",Speed ); }startBanner();