function showbigpic(image,ausrichtung)
	{
	verlinkung="img/galerie/orig/"+image;
	document.images["projektbild"].src = verlinkung;
	document.getElementById("bildprojektor").style.display="";
	if (ausrichtung=="v")
		{
		document.images["projektbild"].width = "450";
		document.images["projektbild"].height = "600";
		document.getElementById("bildprojektor").style.top="-210px";
		document.getElementById("bildprojektor").style.left="5px";
		document.getElementById("bildprojektor").style.width="450px";
		document.getElementById("bildprojektor").style.height="600px";
		}
	if (ausrichtung=="h")
		{
		document.images["projektbild"].width = "600";
		document.images["projektbild"].height = "450";
		document.getElementById("bildprojektor").style.top="-80px;";
		document.getElementById("bildprojektor").style.left="5px";
		document.getElementById("bildprojektor").style.width="600px";
		document.getElementById("bildprojektor").style.height="450px";
  
		}
	}

function close_bigpic()
	{
	verlinkung="img/nix.gif";
	document.images["projektbild"].src = verlinkung;
	document.getElementById("bildprojektor").style.display="none";
	}
