function flash(arquivo, width, height){
	document.writeln('<object>');
	document.writeln('<param name="movie" value="'+ arquivo +'">');
	document.writeln('<embed src="'+ arquivo +'" width="'+ width +'" height="'+ height +'">');
	document.writeln('</embed>');
	document.writeln('</object>');
	
}