// Subnavigation
function openWindow(pfad,name,breite,hoehe,prop){
  var  diffx = 100;
  xpos=130;
  xpos1=xpos;
  if(document.all)
  xposend=147+((583-breite)/2)
  else
  xposend=150+((620-breite)/2);
  ypos=(screen.height-hoehe)/2;
  prop+=(prop!='')?',':'';
  prop+=',left='+xpos+',top='+ypos;
  F1=window.open(pfad,name,prop+((prop!='')?',':'')+'width='+breite+',height='+hoehe);

  while (xpos1<(xposend-1)){
    xpos2=xpos1+((xposend-xpos1)/10);
    F1.moveTo(xpos2,ypos);
    F1.focus();
    xpos1=xpos2;
  }
    F1.focus();
}


function newsOver(item) {
document.getElementById(item).style.color='#EC7C16';
document.getElementById(item).style.borderTop='solid #EC7C16 1px';
document.getElementById(item).style.borderLeft='solid #EC7C16 10px';
}

function newsOut(item) {
document.getElementById(item).style.color='#666666';
document.getElementById(item).style.borderTop='solid #666666 1px';
document.getElementById(item).style.borderLeft='solid #CCCCCC 10px';
}