﻿// File JScript

    function ApriPopUp(page,height,width){
        window.open(page,null,"height="+height+",width="+width+",status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no");
    }
    

    
     //I parametri della funzione sono: il pulsante do cui scatenare l'evento click, e l'evento    
    function fnTrapKD(btn, event){
         if (document.all){
              if (event.keyCode == 13){
                  event.returnValue=false;
                  event.cancel = true;
                  btn.click();
              }
         }else if (document.getElementById){
            if (event.which == 13){
                event.returnValue=false;
                event.cancel = true;
                btn.click();
            }
        }else if(document.layers){
            if(event.which == 13){
                event.returnValue=false;
                event.cancel = true;
                btn.click();                
            }
        }
    }
    
    
    function MostraInformazioniAggiuntive(show){
        if(show){
                document.getElementById('divInformazioniAggiuntive').style.display='block';
                document.getElementById('ctl00$ContentPlaceHolder1$txtIndirizzo').focus();
        }else{
                document.getElementById('divInformazioniAggiuntive').style.display='none';
        }
    }

