function CalConfig(){
 this.imgArr=new Array('icon_calendar.gif','icon_prev_sm.gif','icon_next_sm.gif','icon_close_sm.gif');
this.imgDir='/ots/imgs/';
 this.weekStart=0;// 0 - sunday ; 1 - monday
 this.showWeekNumber=0;
 this.showToday=1;
 this.strCurrentMonth='Zu aktuellem Monat wechseln';
 this.strTodayis=  'Heute ist';
 this.strWeek='Woche';
 this.previous='Zurück';
 this.next='Weiter';
 this.close='Kalender schließen';
 this.choosedate='Datum wählen';
this.strselectDate='[date] als Datum auswählen.'; // do not replace [date], it will be replaced by date.
 this.calwidth=250;
 this.calselectorstyle="width:250px;   z-index:10010; position:absolute; left:-50px;";
  this.monthNameArr =  new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
 this.monthNameArr2 =  new Array("JAN","FEB","MÄR","APR","MAI","JUN","JUL","AUG","SEP","OKT","NOV","DEZ");
 if (this.weekStart == 0) {
	this.dayNameArr = new Array("Mo","Di","Mi","Do","Fr","Sa","So");
 } else {
	this.dayNameArr = new Array("So","Mo","Di","Mi","Do","Fr","Sa");
 }
}

