//___________________________//
//       JS developer        //
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯//
//            ·^·            //
//         /7\øñø©ë®ø        //
//     · Leonardo Alia ·     //
//  .: ©å§7ø®ø £åßø®ïø§ø :.  //
//___________________________//
//                           //
//___________________________
//   Powered by BeaweB       
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

/************************************************************************************
Impostazioni browser
************************************************************************************/
var ie=document.all?1:0
var ns6=document.getElementById&&!document.all?1:0
var ns4=document.layers?1:0

/************************************************************************************
Funzione per visualizzare
************************************************************************************/
function visit(hid){
        if (document.all?1:0) {
        visobject=eval("document.all."+hid+".style")
	visobject.display="inline";
        }
        if (document.getElementById&&!document.all?1:0) {
        visobject=hid
	document.getElementById(visobject).style.display="inline"
        }
}
/************************************************************************************
Funzione per cambiare background
************************************************************************************/
function cngbck(hid,bck){
        if (document.all?1:0) {
        visobject=eval("document.all."+hid+".style")
	visobject.background=bck;
        }
        if (document.getElementById&&!document.all?1:0) {
        visobject=hid
	document.getElementById(visobject).style.background=bck;
        }
}
/************************************************************************************
Funzione per nascondere
************************************************************************************/
function hidit(hid){
        if (document.all?1:0) {
        hiddobject=eval("document.all."+hid+".style")
	hiddobject.display="none";
        }
        if (document.getElementById&&!document.all?1:0) {
        hidobject=hid
	document.getElementById(hidobject).style.display="none";
        }
}
