function austausch (bildpos,bildneu)
	{
	document.images[bildpos].src="../img/"+bildneu;
        }

function Bilder (bildpos,bildneu,breite,hohe)
{
document.images[bildpos].src="../gallery/"+bildneu;
document.images[bildpos].width=breite;
document.images[bildpos].height=hohe;
}

function SetPic ( picPosOrName, picNameInGallery)
{
	picture = new Image();
	picture.src = "../gallery/"+picNameInGallery;
	Bilder ( picPosOrName, picNameInGallery, picture.width, picture.height );
}
