function ShowControl(ElementID){
document.getElementById(ElementID).style.display="block";
}
function HideControl(ElementID){
document.getElementById(ElementID).style.display="none";
}
function InsertFlash(Flash,Width,Height,ID,Version)
{
    var flashid="FC_"+ID;
    document.write("<Div id=\""+flashid+"\"></div>");
    so=new SWFObject(Flash,ID,Width,Height,Version,"#333333");
    so.addParam("quality", "high");
    so.addParam("wmode", "transparent");
    so.write(flashid);
}
