function mailScrambler(link) 
	{ 
	 var a,b,c,d,e,f; 
	 a='<a href=\"mai'; 
	 b='info'; 
	 c='\">'; 
	 a+='lto:'; 
	 b+='@'; 
	 e='</a>'; 
	 f=link; 
	 b+='noglut'; 
	 b+='.'; 
	 b+='eu'; 
	 d=f; 
	 document.write(a+b+c+d+e); 
	}

function showPicture(imageName, smaak) {
	
	document.getElementById('productinfo').style.display="block";
	document.getElementById('productinfoPicture').src="images/products/" + imageName;
	document.getElementById('productinfoText').innerHTML = smaak;
	document.getElementById('container').style.opacity="0.5";
	document.getElementById('container').style.filter="alpha(opacity=50)";

}