var cal = new CalendarPopup("popup_calendar"); cal.setMonthNames("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"); cal.setMonthAbbreviations("Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aoû","Sep","Oct","Nov","Déc"); cal.setDayHeaders("D","L","M","M","J","V","S"); cal.setWeekStartDay(1); // week is Monday - Sunday cal.setTodayText("Aujourd'hui"); cal.setCssPrefix("popup_calendar_"); cal.addDisabledDates(null, '02/06/12'); var win = new PopupWindow('popup_timer'); function view_popup_timer(CIBLE) { win.autoHide(); win.offsetX = -152; win.offsetY = 25; win.populate("
" + ""+ ""); win.showPopup('anchor2'); view_tabs_popup_timer('midi'); } function done_popup_timer(TARGETFIELD,VALUEFIELD) { document.getElementById(TARGETFIELD).value = VALUEFIELD ; document.getElementById(TARGETFIELD+"_span").innerHTML = VALUEFIELD ; win.hidePopup(); } function view_tabs_popup_timer(V) { if (V == 'midi') { document.getElementById('popup_timer_midi').style.display='block' ; document.getElementById('popup_timer_soir').style.display='none' ; } else { document.getElementById('popup_timer_midi').style.display='none' ; document.getElementById('popup_timer_soir').style.display='block' ; } }