// Rollover für menues => Menuepunkt hervorheben
function highlight(el)	{
  	el.style.background='#e3e2c7';
  	el.style.border='solid';
  	el.style.borderWidth='0px';
  	el.style.borderColor='#e3e2c7';
}
      
// Rollover für menues => Menuepunkt normal
function delight(el)	{
  //	el.style.backgroundImage='url(../images/navi_bg_top.jpg)';
  el.style.backgroundColor='transparent';
}


// Öffnen des Fensters "sendmail"
function sendmail(tmpl,urlparam) {
  LeftPosition = (screen.width) ? (screen.width-800)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-600)/2 : 0;
  window.open('sendmail.asp?'+urlparam+'&tmpl='+tmpl,'sendmail','top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,toolbar=no,status=yes,width=516,height=550');
  }


// Öffnen des Fensters "print"
function openprint(tmpl,urlparam) {
  LeftPosition = (screen.width) ? (screen.width-800)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-600)/2 : 0;
  window.open('content_print.asp?'+urlparam+'&tmpl='+tmpl,'printversion','top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,toolbar=no,status=yes,width=516,height=550');
  }


// Schliessen eines Fensters
function closepop() {
  window.close();
  }

// Schliessen des Fensters und Reload
function closepoprld() {
  window.opener.location.reload();
  self.close();
  }
  
// Rollover Buttons

  Normal1 = new Image(); 
  Normal1.src = "images/button_content/de.jpg"; 
  Highlight1 = new Image(); 
  Highlight1.src = "images/button_content/de_over.jpg"; 

  Normal2 = new Image(); 
  Normal2.src = "images/button_content/ko.jpg"; 
  Highlight2 = new Image(); 
  Highlight2.src = "images/button_content/ko_over.jpg";

  Normal3 = new Image(); 
  Normal3.src = "images/button_content/en.jpg"; 
  Highlight3 = new Image(); 
  Highlight3.src = "images/button_content/en_over.jpg";
  
  Normal4 = new Image(); 
  Normal4.src = "images/button_content/it.jpg"; 
  Highlight4 = new Image(); 
  Highlight4.src = "images/button_content/it_over.jpg";
  
  Normal5 = new Image(); 
  Normal5.src = "images/button_content/ru.jpg"; 
  Highlight5 = new Image(); 
  Highlight5.src = "images/button_content/ru_over.jpg";  

  function Bildwechsel(Bildnr, Bildobjekt){
   window.document.images[Bildnr].src = Bildobjekt.src;}

