function mouseOut(nr){
	document.getElementById(nr).src = '/i/n' + nr + '.gif'
}
function mouseOver(nr){
	document.getElementById(nr).src = '/i/n' + nr + '_o.gif'
}

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 = 700;
	height= 700;
	links  = (screen.width-width)/2;
	oben  = (screen.height-height)/2;
	galler = window.open(pfad,"Fotogalerie","width="+width+",height="+height+",left="+links+",top="+oben);
	galler.focus();	

	}
