﻿function writeFlashEmbed(swf, width, height, moduleId)
{
    var flashOutput = "<embed wmode=\"transparent\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"";
    flashOutput += " " + "src=\"" + swf + "\"";
    if (width.length > 0)
    {
        flashOutput += " " + "width=\"" + width + "\"";
    }
    if (height.length > 0)
    {
        flashOutput += " " + "height=\"" + height + "\"";
    }
    document.getElementById(dnn.getVar("sCtl" + moduleId)).innerHTML = flashOutput + " \>";
}
