function changeGalleryImage2(rang,name,nr)
	{
         document.gallery.bild_id.value=nr;
	document.gallery.actualbildname.value=name;     
	}


function gallery()
	{
	gallerie = document.gallery.gallery_id.value;
	bild = document.gallery.bild_id.value;
	lang = document.gallery.sprache.value;
	pfad = "/gallery/index.php?gid=" + gallerie + "&nr=" + bild + "&lang=" + lang;
	

	width = 670;
	height= 700;
	links  = (screen.width-width)/2;
	oben  = (screen.height-height)/2 - (screen.height-height)/3;
	galler = window.open(pfad,"Fotogalerie","width="+width+",height="+height+",left="+links+",top="+oben);
	galler.focus();	

	}