function mOver(cell)
{
	if (!cell.contains(event.fromElement))
	{
		cell.style.cursor = 'hand';
		cell.bgColor = '#CCCC33';
	}
}
function mOut(cell)
{
	if (!cell.contains(event.toElement))
	{
		cell.style.cursor = 'default';
		cell.bgColor = '#968C45';
	}
}
function mClick(cell)
{
	if(event.srcElement.tagName=='TD')
	{
		cell.children.tags('A')[0].click();
	}
}

function setLanguageoptionLink(link){
	languageoption_de.href = link + '&l=de';
	languageoption_en.href = link + '&l=en';
}
