var newWindow;
function credits(){
newWindow=window.open("../credits.htm", "newWindow", "left=100, top=100, scrollbars=0, resizable=0, toolbar=0, menubar=0, status=0, height=120, width=180")
}

function ingrandisci()
{
self.resizeTo(screen.availWidth,screen.availHeight)
self.moveTo(0,0);                                
}

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("Tasto destro del mouse disabilitato!")
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

function cambia(ImageName,ImageFile){
ImageName.src = ImageFile;
}

function printpage() {
if (window.print) {
window.print();
} else {
alert('Per stampare la pagina, seleziona STAMPA dal menu del tuo browser.');
}
}

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
