//**************GENERALE****************
window.onload = function() {
    //inserire qui tutte le funzioni da triggerare
   
}

//************infobox*************************
var iedom=document.all||document.getElementById;
var velocita=1 ;
var oScrollAltezza=''
var oScroll
function definisci_infobox(){
    if (iedom){
        oScroll=document.getElementById? document.getElementById("screen_txt") : document.all.screen_txt
        oScrollAltezza=oScroll.offsetHeight //read only property
    }
    pippo=setInterval("scrolla()",80)
}
window.onload = definisci_infobox; 

function scrolla(){
    if (iedom){
        if (parseInt(oScroll.style.top)>(oScrollAltezza*(-1.2))) 
            oScroll.style.top=parseInt(oScroll.style.top)-velocita+"px"
        else
        oScroll.style.top=parseInt(oScrollAltezza)+ (-30)+"px" //
    }
    //document.getElementById("testadica").innerHTML = oScroll.style.top
}


//**************************    reLe  ************************
//onclick="reLe('pippoid');"
function reLe(idRele){
    with(document.getElementById(idRele)) {
        style.display = (style.display == 'none' || '')? 'block' : 'none'
    }
}


//***************************popUp**********************************

function popUp(nome, larg, alt) {
    var popUp = window.open('about:blank',nome,'toolbar=0,directories=0,menubar=0,status=0,scrollbar=0,resizable=1,width='+larg+',height='+alt+'');
   
}

