function mOver(cell,num)
 {
  if(document.getElementById) { document.getElementById('menu'+num).style.color = "#000000"; }
  if (!cell.contains(event.fromElement))
   {
    cell.style.cursor = 'hand';
    cell.bgColor = '#FFFFFF';
   }
 }

function mOverTarget(cell,myFont)
 {
  if(document.getElementById) 
   {
    document.getElementById(myFont).style.color = "#000000";
    document.getElementById(cell).bgColor = '#FFFFFF';
   }
 }

function mOut(cell,num)
 {
  if(document.getElementById) { document.getElementById('menu'+num).style.color = "#FFFFFF"; }
  if (!cell.contains(event.toElement))
   {
    cell.style.cursor = 'default';
    cell.bgColor = '#336699';
   }
 }

function mOutTarget(cell,myFont)
 {
  if(document.getElementById) 
   {
    document.getElementById(myFont).style.color = "#336699"; 
    document.getElementById(cell).bgColor = '#336699';
   }
 }

function mClick(cell)
 {
  if(event.srcElement.tagName=='TD')
   {
    cell.children.tags('A')[0].click();
   }
 }

function mClickTarget(link)
 {
  window.location=link;
 } 

function openwin (url) 
{
 fenster = window.open(url, "fenster", "width=400,height=200,status=no,scrollbars=yes,resizable=yes");
 fenster.focus();
}