var vb;

function init(){
	vb = document.getElementById('tekst_m');
	if(document.getElementById('kop_m')) document.getElementById('kop_m').onclick=terug;
	if(document.getElementById('printknop')) document.getElementById('printknop').onclick=printen;
}

function doe(wat){
	if (wat=='r') index++; else index--;
	if (index<0) index=max; else if (index>max) index=0;
	//afbld='<img src="'+map+lijst[index][0]+'" width="'+lijst[index][1]+'" height="'+lijst[index][2]+'" alt="'+lijst[index][3]+'" title="'+lijst[index][3]+'" border="0" id="voorbeeld" usemap="#matrix" />';
	afbld='<img src="'+map+lijst[index][0]+'" width="'+lijst[index][1]+'" height="'+lijst[index][2]+'" border="0" id="voorbeeld" usemap="#matrix" />';
	vb.innerHTML=afbld;
}

function terug(){history.back();}

function printen(){window.print();}