
var CAL_TPL = {

	// >>> Localization settings <<<
	

	// months as they appear in the selection list
	'months': ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'],

	// week day titles as they appear on the calendar
	'weekdays': ['Zon', 'Maa', 'Din', 'Woe', 'Don', 'Vri', 'Zat'],

	// day week starts from (normally 1-Mo or 0-Su)
	'weekstart': 0,

	// 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': 1,
	'yearsafter': 7,

	// >>> Appearence settings (HTML tags attributes) <<<

	// outer table (TABLE)
	'outertable': {
		'cellpadding': 0,
		'cellspacing': 0,
		'border': 0,
        'width': '100%'
	},
	// month & year navigation table (TABLE)
	'navtable': {
		'cellpadding': 0,
		'cellspacing': 0,
		'border': 0,
        'width': '100%',
        'class' : 'buitentabel'
	},
	// today icon cell (TD); if omited no today button will be displayed
	'todaycell': {
		'width' : 0
	},
	// time navigation table (TABLE)
	'timetable': {
		'cellpadding': 0,
		'cellspacing': 0,
		'border': 0,
		'width': '100%',
		'class' : 'calTimetable'
	},
	// pixel image (IMG)
	// for modal mode only
	'pixel': {
		'src': 'http://www.couwenbergh.info/navi/navpic/pixel.gif',
		'width': 0,
		'height': 0,
		'border' : 0
	},
	// not for on-page mode
	'calbutton': {
		'value': ' Open kalender en kies uw datum '
	},

	// icon image to open the calendar instance (IMG),
	// not for on-page mode

	'caliconshow': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender.gif',
		'width': 22,
		'height': 19,
		'border' : 0,
		'alt': ' Open kalender en kies uw datum ',
        'style':  'position:absolute; /* left:107px !important; */ left:123px; margin-top:2px; '
	},
	// icon image to close the calendar instance (IMG)
	// for modal mode only
	'caliconhide': {
		'src': 'img/no_cal.gif',
		'width': 16,
		'height': 16,
		'border' : 0,
		'alt': ' Open kalender en kies uw datum '
	},
	// input text field to store the date & time selected (INPUT type="text")
	'datacontrol': {
		'width': 225,
		'maxlength' :180,
		'class' : 'calDatCtrl'
	},
	// hour, minute & second selectors (SELECT)
	'timeselector': {
		'class' : 'calTimeselector'
	},
	// today icon image (IMG); if omited no today button will be displayed
	'todayimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vandaag.gif',
		'width': 14,
		'height': 11,
		'border' : 0,
		'title': ' VANDAAG '
	},
	// month scroll icon cell (TD)
	'monthscrollcell': {
        'width': 20,
		'height': 10
	},
	// next hour image (IMG)
	'hourplusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_volgende.gif',
		'width': 10,
		'height': 10,
		'border' : 0,
		'alt': 'scroll to next hour'
	},
	// previous hour image (IMG)
	'hourminusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vorige.gif',
		'width': 10,
		'height': 10,
		'border' : 0,
		'alt': 'scroll to previous hour'
	},
	// next minute image (IMG)
	'minplusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_volgende.gif',
		'width': 10,
		'height': 10,
		'border' : 0,
		'alt': 'scroll to next minute'
	},
	// previous minute image (IMG)
	'minminusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vorige.gif',
		'width': 10,
		'height': 10,
		'border' : 0,
		'alt': 'scroll to previous minute'
	},
	// next second image (IMG)
	'secplusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_volgende.gif',
		'width': 10,
		'height': 10,
		'border' : 0,
		'alt': 'scroll to next second'
	},
	// previous second image (IMG)
	'secminusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vorige.gif',
		'width': 10,
		'height': 10,
		'border' : 0,
		'alt': 'scroll to previous second'
	},
	// next month image (IMG)
	'monthplusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_volgende.gif',
		'width': 11,
		'height': 11,
		'valign' : 'top',
        'border' : 0,
		'alt': ' VOLGENDE MAAND '
	},
	// previous month image (IMG)
	'monthminusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vorige.gif',
		'width': 11,
		'height': 11,
		'valign' : 'bottom',
        'border' : 0,
		'alt': ' VORIGE MAAND '
	},
	// year scroll icon cell (TD)
	'yearscrollcell': {
		'width' : 10
	},
	// next year image (IMG)
	'yearplusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_volgende.gif',
		'width': 11,
		'height': 11,
		'border' : 0,
        'valign' : 'top',
		'alt': ' VORIG JAAR '
	},
	// previous year image (IMG)
	'yearminusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vorige.gif',
		'width': 11,
		'height': 11,
		'border' : 0,
        'valign' : 'bottom',
		'alt': ' VOLGEND JAAR '
	},
	// next AM/PM image (IMG)
	'applusimage': { 'src': 'http://www.couwenbergh.info/navi/navpic/kalender_volgende.gif'
	},
	// previous AM/PM image (IMG)
	'apminusimage': {
		'src': 'http://www.couwenbergh.info/navi/navpic/kalender_vorige.gif'
	},
    // inactive next image (IMG)
	'displusimage': {
		'src': 'img/plus_dis.gif',
		'width': 10,
		'height': 10,
		'border' : 0
	},
	// inactive previous image (IMG)
	'disminusimage': {
		'src': 'img/minus_dis.gif',
		'width': 10,
		'height': 10,
		'border' : 0
	},
	// month selector cell (TD)
	'monthselectorcell': {
		'width': '95px',
		'align': 'right'
	},
	// hour, minute & second scroll icon cell (TD)
	'timescrollcell': {
		'width' : 0
	},
	// time selector cell (TD)
	'timeselectorcell': {
		'width': '0px',
		'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': 0,
		'cellspacing': 0,
		'border': 0,
		'width': '100%'
	},
	// week day title cell (TD)
	'wdaytitle' : {
		'width' : 20,
        'height' : 25,
		'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': {
    	'align': 'center',
		'valign': 'middle',
		'style' : 'width: 100%; height:100%; '
	},
	// selected day cell (TD)
	'dayselectedcell': {
		'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'
	}
};
