function enterSelect(nameElement) {
    if (window.event.keyCode==13) {
        document.getElementById(nameElement).focus();
       
    }
}

function conferma(text,link){
    if(confirm(text))
        location.href =(link);    
}