// JavaScript Document
	function showLargePictureText(name, width, height, text){
		var largePicture = new Image;
		largePicture.src="uploads/media/" + name + "_large.png";
		document.picture.width=width;
		document.picture.height=height;
		document.picture.src=largePicture.src;
      document.getElementById("bildText").innerHTML=text; 

	} // function showLargePictureText

	function showLargePicture(name, width, height){
		var largePicture = new Image;
		largePicture.src="uploads/media/" + name + "_large.jpg";
		document.picture.width=width;
		document.picture.height=height;
		document.picture.src=largePicture.src;

	} // function showLargePicture

