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;// 1- sunday ; 0- monday
 this.showWeekNumber=1;
 this.showToday=1;
 this.strCurrentMonth='Ir al mes actual';
 this.strTodayis='Hoy es';
 this.strWeek='Sem';
 this.previous='Anterior';
 this.next='Siguiente';
 this.close='Cerrar calendario';
 this.choosedate='Elegir una fecha';
this.strselectDate='Seleccione [date] como fecha.'; // do not replace [date], it will be replaced by date.
 this.calwidth=250;
 this.calselectorstyle="width:250px;   z-index:10010; position:absolute;";
  this.monthNameArr =  new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
 this.monthNameArr2 = new Array("ENE","FEB","MAR","ABR","MAY","JUN","JUL","AGO","SEP","OCT","NOV","DIC");
 if (this.weekStart == 0) {
	this.dayNameArr = new Array("Dom","Lun","Mar","Mié","Jue","Vie","Sáb");
 } else {
	this.dayNameArr =  new Array("Lun","Mar","Mié","Jue","Vie","Sáb","Dom");
 }
}

