// JavaScript Document
		    function changeIMG(ident, file_change,old){
				var old_img = document.getElementById(ident).src;
				var new_img = document.getElementById(old).src;
				
				new_img = new_img.replace("images/s","images/m");
				old_img = old_img.replace("images/m","images/s");
				
				document.getElementById(ident).src = new_img;
				document.getElementById(old).src = old_img;
			}
			
			function showBig(afbeelding,showimg) {
				
				var srcc = document.getElementById(afbeelding).src;
				var newdiv = document.createElement('div');
				var y = document.body.scrollTop;//document.getElementById(afbeelding).y;
				var top = y + 50;
				var top2 = top + 6;

  				newdiv.setAttribute('id', 'afbeeldingGroot');
				newdiv.style.position = "absolute";
				newdiv.style.zIndex = 5;
				newdiv.style.left = 100 + "px";
				newdiv.style.top = top +"px";
				newdiv.style.height = 550 + "px";
				newdiv.backgroundColor = "#ffffff";
				srcc = srcc.replace("images/m","images/l");
				newdiv.innerHTML = "<img src='"+ srcc +"' style=\"border:2px solid #ffffff;\" border='0' /><p style=\"color:#000000;\">&nbsp;&nbsp;&nbsp;<a href=\"javascript:removePhoto();\" style='color:black;'><img src='../../img/close.jpg'></a></p>";
				
				document.getElementById('hoofd').appendChild(newdiv);
				
				var newdiv = document.createElement('div');
  				newdiv.setAttribute('id', 'close');
				newdiv.style.zIndex = 5;
				newdiv.style.position = "absolute";
				newdiv.style.left = 107 + "px";
				newdiv.style.top = top2 +"px";
				//newdiv.innerHTML = "<a href=\"javascript:removePhoto();\" style='color:black;'>[x]</a>";
				document.getElementById('hoofd').appendChild(newdiv);
		}
		function removePhoto(){
				var DIVtoRemove = document.getElementById("afbeeldingGroot");
				DIVtoRemove.parentNode.removeChild(DIVtoRemove);
				
				var DIVtoRemove2 = document.getElementById("close");
				DIVtoRemove2.parentNode.removeChild(DIVtoRemove2);	
		}
