//Função que carrega um flash
function objFlash(urlFlash,idFlash,qtLargura,qtAltura,nmBackground,nmFlashVars){
	document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,0,0' WIDTH='"+qtLargura+"' HEIGHT='"+qtAltura+"' id='"+idFlash+"' ALIGN=''>");
	document.write("<PARAM NAME=movie VALUE='"+urlFlash+"'>");
	document.write("<PARAM NAME=quality VALUE=high>"); 
	document.write("<PARAM NAME='menu' VALUE='false'>");
	document.write("<PARAM NAME='wmode' VALUE='opaque'>");	
	document.write("<PARAM NAME=bgcolor VALUE="+nmBackground+">"); 	
	document.write("<PARAM NAME='FlashVars' VALUE='"+nmFlashVars+"'>");
	document.write("<EMBED src='"+urlFlash+"' FlashVars='"+nmFlashVars+"'");
	document.write("quality=high bgcolor="+nmBackground+"  WIDTH='"+qtLargura+"' HEIGHT='"+qtAltura+"' NAME='"+idFlash+"' ALIGN=''");
	document.write("TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer' menu='false'></EMBED>");
	document.write("</OBJECT>");
}
