// embed the flash swf
function carga_flash(movieName, width, height, baseVersion, bgColor) {
    document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + baseVersion + ',0,0,0" width="' + width + '" height="' + height + '">\n<param name="movie" value="' + movieName + '">\n<param name="bgcolor" value="' + bgColor + '">\n<param name="quality" value="high">\n');
    document.write ('<embed src="' + movieName + '" TYPE="application/x-shockwave-flash" quality="high" bgcolor="' + bgColor + '" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width=' + width + ' height=' + height + '></embed>\n</object>');
    return;
}