// structure that describes visual aspects of the table 
var TABLE_LOOK = {
	// 0 - caption,
	// 1 - header rows to be skipped at the top when applying effects,
	// 2 - body,
	// 3 - footer rows to be skipped at the bottom when applying effects,
	// 4 - paging,
	// 5 - filters
//	'onclick' : function (a_row, a_marked) {
//		alert('marked IDs: ' + a_marked);
//		alert('just marked row: ' + a_row);
//	},
	'key' : 0,
	'structure' : [0,1,2, 3, 4, 5],
	'params' : [3, 1], // [cellpadding,cellspacing]
 	'colors' : {
		'even'    : '#DCDCDC',
		'odd'     : '#D3D3D3',
		'hovered' : '#FFAAAA',
		'marked'  : '#FFFF00'
 	},
	'multy_mark' : true,
 	'freeze' : [0, 0], // how many rows to skip [at_the_top, at_the_bottom] when applying effects 
	'paging' : {
		'by' : 0, // page size (0 - no paging)
		'pp' : '&nbsp;<b>&laquo;</b>',  // html for previous page link
		'pn' : '<b>&raquo;</b>&nbsp;', // html for next page link
		'tt' : '&nbsp;Pagina %ind van %pgs&nbsp;' /* in this line your can use the follow variables 1-bazed: 
													%pgs total pages index
													%ind current page index
													%rcs total records found
												*/
	},
	'sorting' : {
		// HTML for ascending sorted state icon
		'as' : '<img src=/ttp_files/custom_imgs/asc.gif border=0 height=4 width=8 alt="sorteer aflopend">',
		// HTML for descending sorted state icon
		'ds' : '<img src=/ttp_files/custom_imgs/desc.gif border=0 height=4 width=8 alt="sorteer oplopend">',
		'cl' : null,
		// Order of sorted: true - ascending sorted, false descending sorted
		'or' : false

	},
	'filter' : {
		'type': 1 + 2 + 4, // filter 0 - off, 1 - substring, 2 - match, 4 - regexp filter (e.g. 1+2+4 means all filters on)
		'btn_ok' : '&nbsp;<img src=/ttp_files/custom_imgs/yes.gif border=0 alt="Filter toepassen" align="absmiddle">',
		'btn_no' : '<img src=/ttp_files/custom_imgs/no.gif border=0 alt="Filter wissen" align="absmiddle">'
	},
	'exp_to' : {
		'type': 1 + 2 + 4, // export 0 - off, 1 - clipboard, 2 - text, 4 - excel (e.g. 1+2+4 means all filters on)
		'name': 'export',
		'btn_exp_clip'  : '&nbsp;<img src=/ttp_files/custom_imgs/exp_copy.gif border=0 alt="Kopiëer naar klembord" align="absmiddle">',
		'btn_exp_text'  : '&nbsp;<img src=/ttp_files/custom_imgs/exp_text.gif border=0 alt="Exporteer naar tekst" align="absmiddle">',
		'btn_exp_excel' : '&nbsp;<img src=/ttp_files/custom_imgs/exp_excel.gif border=0 alt="Exporteer naar Excel" align="absmiddle">'
	},
	'css' : {
		'main'     : 'tabTable0',
		'body'     : ['tabBody0Col0','tabBody0Col1','tabBody0Col2','tabBody0Col3'],
		'captCell' : 'tabCaptionCell0',
		'captText' : 'tabCaptionLink0',
		'head'     : 'tabHeadCell0',
		'foot'     : 'tabFootCell0',
		'pagnCell' : 'tabPaging0',
		'pagnText' : 'tabPagingText0',
		'pagnPict' : 'tabPagingArrowCell0',
		'filtCell' : 'tabFilter0',
		'filtPatt' : 'tabFilterPattern0',
		'filtSelc' : 'tabFilterSelect0'
	}
};

var ARR_STRINGS ={
'WEEKDAYS':["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za"],
'long_days' : ['Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag'],
'short_days' : ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'],
'long_month' : ['Januari','Februari','Maart','April','Mei','Juni','Juli','Augustus','September','Oktober','November','December',''],
'short_month' : ['Jan', 'Feb', 'Maa', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec', ''],
'bad_month':'Parsing error: Onbekende maand "%month_name"',
'bad_date_format':'Onbekend datum formaat',
'need_form_name':'Formulier naam is verplichte parameter van teken methode.',
'form_not_found':"Formulier met naam '%form_name' niet gevonden in het document.",
'max_date':'Sorry, data na %max_date niet toegestaan.',
'min_date':'Sorry, data voor %min_date niet toegestaan.',
'not_meet':"Waarschuwing : Input datum voldoet niet aan formaat specificatie."
};

