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='Gå til gjeldende måned';
 this.strTodayis=  'Dagen i dag er';
 this.strWeek='Uke';
 this.previous='Forrige';
 this.next='Neste';
 this.close='Lukk kalenderen';
 this.choosedate='Velg dato';
 this.strselectDate='Angi [date] som dato.'; // do not replace [date], it will be replaced by date.
 this.calwidth=250;
 this.calselectorstyle="width:250px; z-index:10010; position:fixed; ";
 this.monthNameArr = new Array("Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember");
 this.monthNameArr2 =  new Array("JAN","FEB","MAR","APR","MAI","JUN","JUL","AUG","SEP","OKT","NOV","DES");
 if (this.weekStart == 0) {
	this.dayNameArr = new Array("Søn","Man","Tir","Ons","Tor","Fre","Lør");
 } else {
	this.dayNameArr = new Array("Man","Tir","Ons","Tor","Fre","Lør","Søn");
 }
}



