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=1;
 this.showToday=1;
 this.strCurrentMonth='Vai al mese correntes';
 this.strTodayis=  'Oggi è';
 this.strWeek='sett';
 this.previous='Precedente';
 this.next='Successivo';
 this.close='Chiudi calendario';
 this.choosedate='Scegli data';
 this.strselectDate='Seleziona [date] come data.'; // do not replace [date], it will be replaced by date.
 this.calwidth=250;
 this.styleSheet='http://madairnew.onthesnow.com/madbuilder/calSelector.css';
 this.calselectorstyle="width:270px; z-index:10010; position:absolute; "; //required initial calendar style (visibility is handled by the application);
 this.monthNameArr = new Array("gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre");
 this.monthNameArr2 =  new Array("gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic");
 if (this.weekStart == 0) {
	this.dayNameArr = new Array("dom","lun","mar","mer","gio","ven","sab");
 } else {
	this.dayNameArr =new Array("lun","mar","mer","gio","ven","sab","dom");
 }
}


