
// ------------------------------------------------------------------------------- //

  function mOvr(src,clrOver)
    { if (!src.contains(event.fromElement)) { src.style.cursor = 'hand'; src.bgColor = clrOver; src.children.tags('A')[0].style.color = '#ffffff';}}
	
  function mOut(src,clrIn) 
    { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; src.bgColor = clrIn;  src.children.tags('A')[0].style.color = '#000000';}}
	
  function mClk(src) 
    { if(event.srcElement.tagName=='TD'){src.children.tags('A')[0].click();} }
	
  function mOvrTop(src,clrOver)
    { if (!src.contains(event.fromElement)) { src.style.cursor = 'hand'; src.bgColor = clrOver;}}
	
  function mOutTop(src,clrIn) 
    { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; src.bgColor = clrIn;}}

// ------------------------------------------------------------------------------- //

  function ZweiSeiten(URL1,F1,URL2,F2)
  {  
    parent.frames[F1].location.href=URL1;
    parent.frames[F2].location.href=URL2;
  }

// ------------------------------------------------------------------------------- //

  function EineSeite(URL1,F1)
  {  
    parent.frames[F1].location.href=URL1;
  }

// ------------------------------------------------------------------------------- //

  function benennungzeigen(namel)
    {
    benennung.value = namel;
    }

// ------------------------------------------------------------------------------- //

  function LoadNewWindow(datei,name) 
  {
    window.open(datei,name,'menubar=no,scrollbars=yes,resizable=yes,width=850,height=550');
  }

// ------------------------------------------------------------------------------- //

  function LoadNewWindowGross(datei,name) 
  {
    window.open(datei,name,'menubar=no,scrollbars=yes,resizable=yes,width=950,height=550');
  }

// ------------------------------------------------------------------------------- //


