

function newWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);

}

 

function toggleSection (idSection,idText) {

 styleDisplay = document.getElementById(idSection).style.display;
 if(styleDisplay == "none"){
  document.getElementById(idSection).style.display='block';
  document.getElementById(idText).innerHTML='show less'
  document.getElementById(idText).className ='showless'
 }
 else{
 document.getElementById(idSection).style.display='none';
 document.getElementById(idText).innerHTML='show more'
  document.getElementById(idText).className ='showmore'
 }
 self.focus()

}


window.onload = function() {
 el = document.getElementById('searchfield');
 el.onclick = function () {;el.value = el.value=="Suchen"?"":el.value;}
 el.onblur = function () {   el.value = el.value==""?"Suchen":el.value;}
}