/*Create initial properties object*/ myPickProp2= new Object(); /*Images*/ myPickProp2.leftIMG='/nizrim/webib.nsf/f/left1/$file/left1.gif'; myPickProp2.rightIMG='/nizrim/webib.nsf/f/right1/$file/right1.gif' myPickProp2.pickIMG='/nizrim/webib.nsf/f/dpopen/$file/dpopen.gif' myPickProp2.closeIMG='/nizrim/webib.nsf/f/close/$file/close.gif' /*End images*/ /*Size of datepicker - Will scale if fonts are too big to fit*/ myPickProp2.width=170; /* End size*/ /*Font properties*/ /*month & year header*/ myPickProp2.headBgColor='#f2f2f2'; myPickProp2.headFontSize=10; //pixels myPickProp2.headFontFamily='Verdana,Helvetica,Arial'; myPickProp2.headFontColor='#ea0000'; /*The individual days*/ myPickProp2.dateBgColor='#f2f2f2'; //C8C8C8'; myPickProp2.dateFontSize=10; //pixels myPickProp2.dateFontFamily='Verdana,Helvetica,Arial'; myPickProp2.dateFontColor='#ea0000'; /*End font properties*/ /*Date properties*/ myPickProp2.weekstartat='m'; //can be either s for sunday or m for monday myPickProp2.dateformat='dd#mm#yyyy'; // use dd for day, mm for month, and yy or yyyy for two-digit or four-digit year. Must be separated with # myPickProp2.datesep='.'; // the date separator that your language use. ie / or - /*End date properties*/ /*Day names*/ //Should be pretty explanatory. Object.mon=monday etc. myPickProp2.mon='Пн'; myPickProp2.tue='Вт'; myPickProp2.wed='Ср'; myPickProp2.thu='Чт'; myPickProp2.fri='Пт'; myPickProp2.sat='Сб'; myPickProp2.sun='Вс'; /*End day names*/ /*Month names*/ myPickProp2.jan='Январь'; myPickProp2.feb='Февраль'; myPickProp2.mar='Март'; myPickProp2.apr='Апрель'; myPickProp2.may='Май'; myPickProp2.jun='Июнь'; myPickProp2.jul='Июль'; myPickProp2.aug='Август'; myPickProp2.sep='Сентябрь'; myPickProp2.oct='Октябрь'; myPickProp2.nov='Ноябрь'; myPickProp2.dec='Декабрь'; /*End month names*/ /*Return field for the date ie. which html-field should the date be returned to, when the user selects a date*/ myPickProp2.retField=""; /*End return field*/