// JavaScript Document
function ConteudoFlash(filme, w, h){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase= "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="'+ w +'" height="'+ h +'">\n');
document.write('<PARAM NAME=movie VALUE="'+ filme +'" />\n');

document.write('<PARAM NAME=movie VALUE="'+ filme +'" />\n');
document.write('<PARAM NAME=menu VALUE=false />\n');
document.write('<PARAM NAME=quality VALUE=high />\n');
document.write('<PARAM NAME=wmode VALUE=transparent />\n');
document.write('<PARAM NAME=scale VALUE=exactfit />\n');
document.write('<PARAM NAME=salign VALUE=Tf" />\n');
document.write('<PARAM NAME=bgcolor VALUE=#EDF1F0" />\n');
document.write('<EMBED src="'+ filme +'" menu=false quality=high scale=exactfit salign=T bgcolor=#FFFFFF  wmode=transparent WIDTH='+ w +' HEIGHT='+ h +' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" />\n');
document.write('</EMBED>\n');
document.write('</object>\n');
}
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 0;
// the version of javascript supported
var jsVersion = 1.0;

