function showPicture(elemThumb, pictureName, pictureWidth, pictureHeight, pictureComment)	{
	//alert("Pcname: " + pictureName);
	try	{

		var foto = new Foto(pictureName, 415, 332, pictureComment);
		//alert(foto.getImageGenPath());
		var elemBig = document.getElementById("imgBig");
		elemBig.src = foto.getImageGenPath();

		var strComment = foto.getComment().replace(/\+/g, "&nbsp;");
		var elemComment = document.getElementById("impressieComment");
		elemComment.innerHTML = unescape(strComment);

	}
	catch (e)	{
		alert("Fout bij showPicture: " + e.message);
	}
	return true;
}
