function WinOpenGen(url, breite, hoehe, sroll)
{
    Xkoord=(screen.width/2-(breite/2));
	Ykoord=(screen.height/2-(hoehe/2));
	params="resizable=1,status=0,scrollbars="+sroll+",toolbar=0,location=1,directories=0,menubar=0,width="+breite+",height="+hoehe+",left="+Xkoord+",top="+Ykoord;
	Fenster = window.open(url,"DisplayWindow",params);
	Fenster.focus();
}
function WinOpenGen2(url, breite, hoehe, sroll)
{
    Xkoord=(screen.width/2-(breite/2));
	Ykoord=(screen.height/2-(hoehe/2));
	params="resizable=1,status=0,scrollbars="+sroll+",toolbar=0,location=0,directories=0,menubar=0,width="+breite+",height="+hoehe+",left="+Xkoord+",top="+Ykoord;
	Fenster = window.open(url,"DisplayGallery",params);
	Fenster.focus();
}
function submit_form(formular)
{
  document.forms[formular].submit();
}
function formHandler(form)
{
	var URL = form.site.options[form.site.selectedIndex].value;
	window.location.href = URL;
}
function jumpMenu(targ,selObj,restore)
{ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function verzoegerung_zeig(id)
{
	window.setTimeout("zeig('"+id+"')",4000);
}
function zeig(id) 
{
	if (document.getElementById(id).style.display == "inline") 
	{
		document.getElementById(id).style.display = "none";
	}
	else 
	{
		document.getElementById(id).style.display = "inline";
	}
}
function hide(id)
{
	if (document.getElementById(id).style.display == "" || document.getElementById(id).style.display == "inline") 
	{
		document.getElementById(id).style.display = "none";
	}
	else
	{
		document.getElementById(id).style.display = "inline";
	}
}
function SetUrl(dateipfad)
{
	if (document.getElementById("bildpfad"))
	{
		document.getElementById("bildpfad").value = dateipfad;
	}
	else if (document.getElementById("pfad_fotogalerie"))
	{
		document.getElementById("pfad_fotogalerie").value = dateipfad;
	}
}
function get_div_height(id)
{
	return document.getElementById(id).offsetHeight;
}
function passe_content_height_an(DIVlinks, DIVrechts)
{
	var DIVrechts_height	= get_div_height(DIVrechts);
	var DIVlinks_height		= get_div_height(DIVlinks);
	if (DIVrechts_height < DIVlinks_height)
	{
		var add = DIVlinks_height - DIVrechts_height+20;
		document.getElementById(DIVrechts).innerHTML = document.getElementById(DIVrechts).innerHTML + '<img src="/img/spacer.gif" alt="" width="1" height="'+add+'" border="0" />';
	}
}
function message(info) 
{
	alert(info);
}
function show(id)
{
	document.getElementById(id).style.display = "inline";
}
function hide(id)
{
	document.getElementById(id).style.display = "none";
}

function setActiveMenu(idAktiv, idDeaktiv)
{
	hide('aktuellAktiv');
	hide('profilAktiv');
	hide('startseiteAktiv');
	hide('kontaktAktiv');
	hide('projekteAktiv');
	hide('vitaAktiv');
	show('aktuellDeaktiv');
	show('profilDeaktiv');
	show('startseiteDeaktiv');
	show('kontaktDeaktiv');
	show('projekteDeaktiv');
	show('vitaDeaktiv');

	hide(idDeaktiv);
	show(idAktiv);
}
