<!-- 
// cell functions  
function mOver(cell) 
{
if (!cell.contains(event.fromElement)) 
{
cell.style.cursor = 'hand'; 
cell.background = 'images/menu/farben/mnu_mo_5A849C.gif';
}
}

function mOut(cell) 
{
if (!cell.contains(event.toElement)) 
{
cell.style.cursor = 'default'; 
cell.background = 'images/top_bg.gif';
}
}

function mClick(cell) 
{
if(event.srcElement.tagName=='TD') 
{
cell.children.tags('A')[0].click();
}
}

//Menu Oben

function mOver1(cell) 
{
if (!cell.contains(event.fromElement)) 
{
cell.style.cursor = 'hand'; 
cell.bgColor = '#ecf2f7'; 
}
}

function mOut1(cell) 
{
if (!cell.contains(event.toElement)) 
{
cell.style.cursor = 'default'; 
cell.bgColor = '#A5B5C6'; 

}
}

function mClick1(cell) 
{
if(event.srcElement.tagName=='TD') 
{
cell.children.tags('A')[0].click();
}
}



function goback()
{
history.go (-1);
}
// -->
