function ActivateMenue(Nr)
{
	document.getElementsByName("menue"+Nr)[0].style.backgroundColor = "#3C1FC1";
}

function MenueOut(Nr)
{
	if (document.getElementsByName("menue"+Nr)[0].style.bgColor != "#3C1FC1")
		document.getElementsByName("menue"+Nr)[0].style.bgColor = "#9d9d9f";
}

function MenueOver(Nr)
{
	if (document.getElementsByName("menue"+Nr)[0].style.bgColor != "#3C1FC1")
		document.getElementsByName("menue"+Nr)[0].style.bgColor = "#3C1FC2";
}

function OpenGalerie(ID)
{
	var width = 600;
	var height= 430;
	var win = window.open("bilddetails.php?ID="+ID, "Bildergalerie", "width="+width+",height="+height+",scrollbars=no");
	win.moveTo((screen.width - width)/2, (screen.height-height)/2);
}

function OpenImage(img)
{
	var win = window.open("openimage.php?img="+img, "_blank", "location=no,status=no,scrollbars=no");
}

