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='Accéder au mois en cours';
 this.strTodayis=  'Date du jour';
 this.strWeek='Semaine';
 this.previous='Précédent';
 this.next='Suivant';
 this.close='Fermer l\'agenda';
 this.choosedate='Choisissez une date';
this.strselectDate='Sélectionnez la date [date].'; // do not replace [date], it will be replaced by date.
 this.calwidth=260;
  this.calselectorstyle="width:260px;   z-index:10010; position:absolute; ";
 this.monthNameArr = new Array("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre");
 this.monthNameArr2 =  new Array("JAN","FEV","MAR","AVR","MAI","JUIN","JUI","AOU","SEP","OCT","NOV","DEC");
 if (this.weekStart == 0) {
	this.dayNameArr = new Array("Di","Lun","Ma","Me","Je","Ve","Sa");
 } else {
	this.dayNameArr =new Array("Lun","Ma","Me","Je","Ve","Sa","Di");
 }
}

