function ParseFlashToDoc(_src, _width, _height){
    document.write("<object " + "type=\"application/x-shockwave-flash\" " + "data=\"" + _src + "\" " + "width=\"" + _width + "\" " + "height=\"" + _height + "\">");
    document.write("<param " + "name=\"movie\" " + "value=\"" + _src + "\" />");
    document.write("<param " + "name=\"quality\" " + "value=\"high\" "+ "/>");
    document.write("<param " + "name=\"menu\" " + "value=\"false\" "+ "/>");
    document.write("<param " + "name=\"wmode\" " + "value=\"opaque\" "+ "/>");
    document.write("</object>");
}

function ParseFlashToDocTrans(_src, _width, _height){
    document.write("<object " + "type=\"application/x-shockwave-flash\" " + "data=\"" + _src + "\" " + "width=\"" + _width + "\" " + "height=\"" + _height + "\">");
    document.write("<param " + "name=\"movie\" " + "value=\"" + _src + "\" />");
    document.write("<param " + "name=\"quality\" " + "value=\"high\" "+ "/>");
    document.write("<param " + "name=\"menu\" " + "value=\"false\" "+ "/>");
    document.write("<param " + "name=\"wmode\" " + "value=\"transparent\" "+ "/>");
    document.write("</object>");
}


