﻿
function MouseOver(td)
{
    td.style.borderStyle = "solid";
    td.style.borderWidth = "2px";
    td.style.borderColor = "#b9519d";
}

function MouseOut(td)
{
    td.style.borderColor = "#BBB";
}


function hideFLV()
{
    document.getElementById(flashMovie).style.display='none';
}