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("Attenzione contenuti protetti da copyright");

return false;

}

return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=right;

style="-moz-user-select: none" 

print1="";
print2="";
print3="";
today = new Date();
weekday = today.getDay();
if (weekday == 6) print1='Sabato';
if (weekday == 0) print1='Domenica';
if (weekday == 1) print1='Lunedì';
if (weekday == 2) print1='Martedì';
if (weekday == 3) print1='Mercoledì';
if (weekday == 4) print1='Giovedì';
if (weekday == 5) print1='Venerdì';
month = today.getMonth();
if (month == 0) print2='Gennaio';
if (month == 1) print2='Febbraio';
if (month == 2) print2='Marzo';
if (month == 3) print2='Aprile';
if (month == 4) print2='Maggio';
if (month == 5) print2='Giugno';
if (month == 6) print2='Luglio';
if (month == 7) print2='Agosto';
if (month == 8) print2='Settembre';
if (month == 9) print2='Ottobre';
if (month == 10) print2='Novembre';
if (month == 11) print2='Dicembre';
date = today.getDate();
year=today.getYear();

if (year < 2000)    
year = year + 1900; 

document.write (print1,' ', date, ' ',print2,' ',year);




