function menu(id,s)
{
  document.getElementById(id).src='img/'+id+'_'+s+'.gif';
}

function menu_button(id,s)
{
  document.getElementById(id).src='img/buttons/'+id+'_'+s+'.gif';
}

function menu_l(id,s)
{
  id1="anzeigen";
  document.getElementById(id).src='img/'+id1+'_'+s+'.gif';
}

function popups(link) {
 if (window.innerWidth) { w = window.innerWidth; } // ns4
 else if(document.body)
 {
  w = document.body.clientWidth;
  if (document.body.offsetWidth == w && document.documentElement && document.documentElement.clientWidth)
  {
   w = document.documentElement.clientWidth;
  }
 }
if (w>799)
  w=w/2-70;
else
  w=w-350;
if (w<0) w=0;
  fenster = window.open('m_info.php?id='+link,'popup','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=300,height=300,left='+w+',top=225');
  fenster.focus();
}

