kopfLeft=10;
kopfTop=10;


function pruefe(mausx,mausy,name,areaLeft1,areaTop1,areaLeft2,areaTop2,bildLeft1,bildTop1,bildBreite,bildHoehe){
var anzeige='none';

  if( (mausx>areaLeft1+kopfLeft) && (mausx<areaLeft2+kopfLeft) && (mausy>areaTop1+kopfTop)&& (mausy<areaTop2+kopfTop) ) anzeige='block'; 
  if( (mausx>bildLeft1) && (mausx<bildLeft1+bildBreite) && (mausy>bildTop1)&& (mausy<bildTop1+bildHoehe) && (document.getElementById(name).style.display=='block' )) anzeige='block'; 
  document.getElementById(name).style.display=anzeige;
}


function Maus(Ereignis){
if (!Ereignis) Ereignis = window.event;

pruefe(Ereignis.clientX,Ereignis.clientY,'materialpunktefr',352,210,454,274,310,266,160,120);

pruefe(Ereignis.clientX,Ereignis.clientY,'orgapunktefr',456,189,580,268,497,267,130,120);


}