/* Creation date: 10.04.2001 */
function fertig()
{
window.status="Fertig";
setTimeout("fertig()",1);
}

// fertig();


function mOver(cell)

{

   if (!cell.contains(event.fromElement))

   {

      cell.style.cursor = 'hand';

      cell.bgColor = '#D0D1F9';

   }

}



function mOut(cell)

{

   if (!cell.contains(event.toElement))

   {

      cell.style.cursor = 'default';

      cell.bgColor = '#C0C1D9';

   }

}

function mOverBack(cell)

{

   if (!cell.contains(event.fromElement))

   {

      cell.style.cursor = 'hand';

      cell.bgColor = '#F0B1D9';

   }

}



function mOutBack(cell)

{

   if (!cell.contains(event.toElement))

   {

      cell.style.cursor = 'default';

      cell.bgColor = '#D091B9';

   }

}




function mClick(cell)

{

   if(event.srcElement.tagName=='TD')

   {

      cell.children.tags('A')[0].click();

   }

}


