// JavaScript Document
//---------------------------------------------------------------------------
function over(cod){
	bw = new Browser();
	if (bw.n4){
    	document.layers[cod].backgroundPosition= 'center bottom';
    }else if(bw.n6){
       document.getElementById(cod).style.backgroundPosition= 'center bottom';
    }else if(bw.ie){
    	document.all[cod].style.backgroundPosition= 'center bottom';
    }
}
//---------------------------------------------------------------------------
function out(cod){
	bw = new Browser();
	if (bw.n4){
    	document.layers[cod].backgroundPosition= 'center top';
    }else if(bw.n6){
       document.getElementById(cod).style.backgroundPosition= 'center top';
    }else if(bw.ie){
    	document.all[cod].style.backgroundPosition= 'center top';
	}
}
//---------------------------------------------------------------------------
function openwindow(finestra){
	for (var i=0; i<document.links.length; i++){
		if (document.links[i].className==finestra) {
        	document.links[i].target="_"+finestra;
        } 
	}
}
//---------------------------------------------------------------------------
function Popup(apri,w,h) {
	var stile = "top=10, left=10, width="+w+", height="+h+", status=no, menubar=no, toolbar=no, scrollbars=yes";
   window.open(apri, "", stile);
}
//---------------------------------------------------------------------------
function Zoom(apri,titolo,w,h) {
	var stile = "top=10, left=10, width="+w+", height="+h+", status=no, menubar=no, toolbar=no, scrollbars=yes";
   window.open("zoom.php?apri="+apri+"&titolo="+titolo, "", stile);
}
