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=1;// 0 - sunday ; 1 - monday
 this.showWeekNumber=1;
 this.showToday=1;
 this.strCurrentMonth='Go To Current Month';
 this.strTodayis=  'Today is';
 this.strWeek='Wk';
 this.strselectDate='Select [date] as date.' // do not replace [date], it will be replaced by date.
 this.calwidth=250;
 this.close='Close Calendar';
 this.next='Next';
 this.previous='Previous';
 this.choosedate='Choose a Date';
 this.calselectorstyle="width:250px; z-index:10010;";
  this.monthNameArr = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
 this.monthNameArr2 = new Array("JAN","FEB","MAR","APR","MAY","JUN","JUL","AUG","SEP","OCT","NOV","DEC");
 if (this.weekStart == 0) {
	this.dayNameArr = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
 } else {
	this.dayNameArr = new Array("Mon","Tue","Wed","Thu","Fri","Sat","Sun");
 }
}
