function mOver(cell)
{
		cell.style.cursor = 'default';
		cell.bgColor = '#002C93';
}

function mOut(cell)
{
		cell.style.cursor = 'default';
		cell.bgColor = '#0037B4';
}

function mClick(cell)
{
   		cell.children.tags('A')[0].click();
}

function openVideo(adress){
    var win=window.open(adress,"huthmann","width=420,height=340,top=40,left=40");
    win.focus();
}
