var cal1 = new CalendarPopup("cal");
var today = new Date();
cal1.setReturnFunction("setMultipleValues3");
cal1.setMonthNames("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
cal1.setDayHeaders("So","Mo","Di","Mi","Do","Fr","Sa");
cal1.setWeekStartDay(1);
//todaystr = today.getFullYear()+"-"+(today.getMonth()+1)+"-"+today.getDate();
cal1.addDisabledDates(null,today.getFullYear()+"-"+(today.getMonth()+1)+"-"+today.getDate());
cal1.setTodayText("Heute");
cal1.offsetX=-153;
cal1.offsetY=20;

function setMultipleValues3(y,m,d) {
	document.teaserform.starttrip_day.selectedIndex = d-1;
	document.teaserform.starttrip_month.selectedIndex = m-1;
	y = y.toString();
	for(var i=0;i<document.teaserform.starttrip_year.options.length;i++) {
		if(document.teaserform.starttrip_year.options[i].value==y) {
			document.teaserform.starttrip_year.selectedIndex=i;
		}
	}
}
