function update_text(){
    document.getElementById('text').style.display = 'none';
    document.getElementById('fcked').style.display = 'block';
    document.getElementById('but_modifica').style.display = 'none';
    document.getElementById('but_applica').style.display = 'block';
    document.getElementById('but_annulla').style.display = 'block';   
}


function annulla_text(){
    document.getElementById('text').style.display = 'block';
    document.getElementById('fcked').style.display = 'none';
    document.getElementById('but_modifica').style.display = 'block';
    document.getElementById('but_applica').style.display = 'none';
    document.getElementById('but_annulla').style.display = 'none';   
}

function mostra_nascondi_prenota(){
    if(document.getElementById('div_prenota').style.display == 'none')
        document.getElementById('div_prenota').style.display = 'block';   
    else
        document.getElementById('div_prenota').style.display = 'none';    
}

function mostra_nascondi_date(){
    if(document.getElementById('div_date').style.display == 'none')
        document.getElementById('div_date').style.display = 'block';   
    else
        document.getElementById('div_date').style.display = 'none';    
}

function nascondi_tutto(){
    if(location.href.search("#le_date") == -1){
        document.getElementById('div_date').style.display = 'none';    
    }
    document.getElementById('div_prenota').style.display = 'none';    
}

function check_form_prenota(language){
   var msg = "";

    switch(language){
        case "IT":
            if( Trim(document.forms['prenota'].nome.value) == "")           msg += "Nome\n";
            if( Trim(document.forms['prenota'].cognome.value) == "")        msg += "Cognome\n";
            if( Trim(document.forms['prenota'].email.value) == "")          msg += "E-mail\n";
            if( Trim(document.forms['prenota'].telefono.value) == "")       msg += "Telefono\n";            
            if( (document.forms['prenota'].n_giorni[0].checked==false) && (document.forms['prenota'].n_giorni[1].checked==false)){
                msg += "Giorni di corso\n";            
                if( ( Trim(document.forms['prenota'].g3_giorno_dal.value) == "") || ( Trim(document.forms['prenota'].g7_giorno_dal.value) == "") )
                    msg += "Data inzio del corso\n";            
            }    
            else if( document.forms['prenota'].n_giorni[0].checked){
                if( Trim(document.forms['prenota'].g3_giorno_dal.value) == "")
                    msg += "Data inzio del corso\n";
            }
            else if( Trim(document.forms['prenota'].g7_giorno_dal.value) == ""){
                  msg += "Data inzio del corso\n";
            }
            if( Trim(document.forms['prenota'].n_persone.value) == "")       msg += "Numero persone\n";            

            if( (document.forms['prenota'].alloggio[0].checked==false) && (document.forms['prenota'].alloggio[1].checked==false)){
                  msg += "Sistemazione\n";
            }

            if(msg!=""){
                msg = "Campi obbligatori:\n\n"+msg;
                alert(msg);
                return false;
            }
        break;
        case "EN":
            if( Trim(document.forms['prenota'].nome.value) == "")           msg += "Name\n";
            if( Trim(document.forms['prenota'].cognome.value) == "")        msg += "Surname\n";
            if( Trim(document.forms['prenota'].email.value) == "")          msg += "E-mail\n";
            if( Trim(document.forms['prenota'].telefono.value) == "")       msg += "Telephone\n";            
            if( (document.forms['prenota'].n_giorni[0].checked==false) && (document.forms['prenota'].n_giorni[1].checked==false)){
                msg += "Day course\n";            
                if( ( Trim(document.forms['prenota'].g3_giorno_dal.value) == "") || ( Trim(document.forms['prenota'].g7_giorno_dal.value) == "") )
                    msg += "Start date of course\n";            
            }    
            else if( document.forms['prenota'].n_giorni[0].checked){
                if( Trim(document.forms['prenota'].g3_giorno_dal.value) == "")
                    msg += "Start date of course\n";
            }
            else if( Trim(document.forms['prenota'].g7_giorno_dal.value) == ""){
                  msg += "Start date of course\n";
            }
            if( Trim(document.forms['prenota'].n_persone.value) == "")       msg += "Number of persons\n";            

            if( (document.forms['prenota'].alloggio[0].checked==false) && (document.forms['prenota'].alloggio[1].checked==false)){
                  msg += "Accomodation\n";
            }

            if(msg!=""){
                msg = "Required fields:\n\n"+msg;
                alert(msg);
                return false;
            }


        
            

        break;
        

    } /**/
    return true;        
}
function Trim(str) { 
    return str.replace(/\s+$|^\s+/g,""); 
} 
