var iVor;
var iVol;

function enlarge(url,text,vorige,volgende){
	iVor = vorige;
	iVol = volgende;
	$('enlimg').src='x_library/'+url;
	$('shadowlabel').innerHTML=text;
	$('shadow').show();
}
function volgende(){
	$('enlimg').src='x_library/'+iVol;
}
function vorige(){
	$('enlimg').src='x_library/'+iVor;
}
function closeEnlarge(){
	$('shadow').hide();
	
}
