// JavaScript Document
function EmbedFlash(_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("<name=\"wmode\" value=\"transparent\" />");
    document.write("</object>");
}

