// based on code written by Tan Ling Wee on 2 Dec 2001 // last updated 20 June 2003 // email : fuushikaden@yahoo.com // // Modified to be completely object-oriented, CSS based and using proper DOM-access functions // @author Martin Marinschek // @author Sylvain Vieujot org_apache_myfaces_CalendarInitData = function() { this.fixedX = -1; // x position (-1 if to appear below control) this.fixedY = -1; // y position (-1 if to appear below control) this.startAt = 1; // 0 - sunday ; 1 - monday this.showWeekNumber = 0; // 0 - don't show; 1 - show this.showToday = 1; // 0 - don't show; 1 - show this.imgDir = "/ti/imgs/calandar/"; this.myImgDir = "/ti/imgs/calandar/"; // directory for images ... e.g. this.myImgDir="/img/" this.themePrefix = "jscalendar-DB"; this.gotoString = "Go To Current Month"; this.todayString = "Today is"; this.todayDateFormat = null; this.weekString = "Wk"; this.scrollLeftMessage = "Click to scroll to previous month. Hold mouse button to scroll automatically."; this.scrollRightMessage = "Click to scroll to next month. Hold mouse button to scroll automatically." this.selectMonthMessage = "Click to select a month." this.selectYearMessage = "Click to select a year." this.selectDateMessage = "Select [date] as date." // do not replace [date], it will be replaced by date. this.popupLeft=false; this.monthName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); this.dayName = this.startAt == 0 ? new Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat") : new Array("Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"); } org_apache_myfaces_DateParts = function(sec, min, hour, date, month, year) { this.sec = sec; this.min = min; this.hour = hour; this.date = date; this.month = month; this.year = year; } org_apache_myfaces_HolidayRec = function(d, m, y, desc) { this.d = d; this.m = m; this.y = y; this.desc = desc; } org_apache_myfaces_PopupCalendar = function() { this.idPrefix = ""; this.selectedDate = new org_apache_myfaces_DateParts(0, 0, 0, 0, 0, 0); this.saveSelectedDate = new org_apache_myfaces_DateParts(0, 0, 0, 0, 0, 0); this.monthConstructed = false; this.yearConstructed = false; this.intervalID1; this.intervalID2; this.timeoutID1; this.timeoutID2; this.ctlToPlaceValue; this.ctlNow; this.containerCtl; this.dateFormat="MM/dd/yyyy"; this.nStartingYear; this.bPageLoaded = false; this.ie = document.all; this.dom = document.getElementById; this.ns4 = document.layers; this.dateFormatSymbols = new org_apache_myfaces_DateFormatSymbols(); this.initData = new org_apache_myfaces_CalendarInitData(); this.today = new Date(); this.dateNow = this.today.getDate(); this.monthNow = this.today.getMonth(); this.yearNow = this.today.getYear(); this.imgSrc = new Array("drop1.gif", "drop2.gif", "left1.gif", "left2.gif", "right1.gif", "right2.gif"); this.img = new Array(); //elements which need to change their dynamical //representation over time this.calendarDiv; this.selectMonthDiv; this.selectYearDiv; this.todaySpan = null; this.captionSpan = null; this.contentSpan = null; this.closeCalendarSpan = null; this.monthSpan = null; this.yearSpan = null this.changeMonthImg = null; this.changeYearImg = null; this.holidaysCounter = 0; this.holidays = new Array(); this.bClickOnCalendar = false; this.bCalendarHidden = true; this.myFacesCtlType = "x:inputCalendar"; this.inputDateClientId; } org_apache_myfaces_PopupCalendar.prototype._hideElement = function(overDiv) { if (document.all) { var iframe = document.getElementById(overDiv.id + "_IFRAME"); if (iframe == null) { iframe = document.createElement("