Grazie... Tutto bene fintanto che non inserisco l'ultima modifica su "function selected(cal, date)"
Modificando la funzione come dici non si aprono i popup delle date.
http://www.lagodidro.eu/de/Copia di prenotazioni_de.htm

Cosa non va...??

function selected(cal, date) {
cal.sel.value = date; // just update the date in the input field.
if (cal.dateClicked && (cal.sel.id == sel1" || cal.sel.id == "sel3"))
cal.callCloseHandler();
if(cal.sel.id == 'sel3' && cal.sel.value)
{
var button = document.getElementById("secondoButton");
button.disabled = false;
var splitted = date.split("/");
var dateStr = engMonth[parseInt(splitted[1])]+" "+splitted[0]+", "+splitted[2]:
button.onclick = function(){
return showCalendar('sel1', '%d/%m/%Y', dateStr);
}
}
}
}