function newWin(url,name,rs,sc,mn,tl,lo,wd,hi)
{
 window.name = "sanev";
 openWindow = window.open(url,name,'resizable='+rs+',scrollbars='+sc+',menubar='+mn+',toolbar='+tl+',location='+lo+',width='+wd+',height='+hi);
}
function high(LinkObject,color)
{
 //LinkObject.bgColor=color;
  LinkObject.style.backgroundColor=color;
}
function low(LinkObject,color)
{
 //LinkObject.bgColor=color;
 LinkObject.style.backgroundColor=color;
}
function projekte(id)
{
//  alert("ID: " + id + " -> " + document.getElementById("alleprojekte_" + id).style.display);
 if (document.getElementById("alleprojekte_" + id).style.display == "none")
 {
  document.getElementById("alleprojekte_" + id).style.display = "block";
  document.getElementById("projekte_grafik_" + id).src = "/images/backgrounds/minus.gif";
  document.getElementById("projekte_grafik_" + id).alt = "Inhalt ausblenden";
 }
  else if (document.getElementById("alleprojekte_" + id).style.display == "block")
 {
  document.getElementById("alleprojekte_" + id).style.display = "none";
  document.getElementById("projekte_grafik_" + id).src = "/images/backgrounds/plus.gif";
  document.getElementById("projekte_grafik_" + id).alt = "Inhalt einblenden";
 }
}