// MÉTODO PARA INVOCAR O ARQUIVO FLASH
function carregaFlash(nomeDiv, arquivoSWF, widthSWF, heightSWF, modoSWF, verificaInstalacao) {
	jQuery('div#' + nomeDiv).flash({ 
		src: arquivoSWF, 
		width: widthSWF, 
		height: heightSWF, 
		wmode: modoSWF, 
		expressInstall: verificaInstalacao
	});
}
