﻿

function SetFlashOBJSize(FID, W, H)
{
    var obj = document.getElementById(FID);
    obj.style.width = W + "px";
    obj.style.height = H + "px";
}