
function Load_swf(movie_file, fm_Width, fm_Height, fm_name) {
//movie_file must be the complete path to swf file
	var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="' + fm_Width +'" height="' + fm_Height +'"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="' + movie_file + '" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="menu" value="false"/>'
    + '<embed src="' + movie_file + '" quality="high" wmode="transparent"'
    + 'width="' + fm_Width +'" height="' + fm_Height +'" name="' + fm_name +'"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);
}