// structure that describes columns of the table and their typevar url=window.document.URL.toLowerCase();url=url.substring(0,url.indexOf('.nsf')+4);var TABLE_CAPT = [	{		'name' : 'Song Title', // columns titles		'type' : STR // standard types (STR, NUM) or custom compare function	},	{		'name' : 'docid', // columns titles		'type' : STR, // standard types (STR, NUM) or custom compare function		'hide' : true	},	{		'name' : 'Song Artist', // columns titles		'type' : STR // standard types (STR, NUM) or custom compare function	}];// 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) {	showInfo(a_row,a_marked);//		var o_form = document.forms.myForm//		o_form.row.value = a_row.join(', ');//		o_form.ind.value = a_row[1];	},	'key' : 0,	'structure' : [0, 1, 2, 3, 4],	'params' : [2,0], // [cellpadding,cellspacing]	'colors' : {		'even'    : 'white',		'odd'     : '#E5E5E5',		'hovered' : '#FFAAAA',		'marked'  : '#FFFF00'	},	'multy_mark' : false,	'freeze' : [0, 0], // how many rows to skip [at_the_top, at_the_bottom] when applying effects	'paging' : {		'by' : 10, // 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		'sh' : false,		'tt' : '%rcs song(s) found - &nbsp;Page %ind of %pgs&nbsp;' /* in this line you can use the following 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='+url+'/asc.gif border=0 height=4 width=8 alt="sort descending">',		// HTML for descending sorted state icon		'ds' : '<img src='+url+'/desc.gif border=0 height=4 width=8 alt="sort ascending">',		'no' : '<img src='+url+'/asds.gif border=0 height=9 width=8 alt="sort ascending">'	},	'filter' : {		// filter 0 - off, 1 - substring, 2 - match, 4 - regexp filter (e.g. 1 + 2 + 4 means all filters on)		'type' : 1	},	'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 = {	'long_days' : ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],	'short_days' : ['Sun', 'Mon', 'Tue', 'Wen', 'Thu', 'Fri', 'Sat'],	'long_month' : ['January','February','March','April','May','June','July','August','September','October','November','December'],	'short_month' : ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],	'bad_month' : 'Parsing error: unknown month "%month_name"',	'not_meet' : "Notice : Input date does not meet input date format."};var TABLE_CONTENT = [];
