function swfEsteira(nome, width, height) {
	document.writeln('<object type="application/x-shockwave-flash" data="'+ nome +'" width="'+ width +'" height="'+ height +'">');
	document.writeln('<param name="movie" value="'+ nome +'" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('</object>');
}

function writeswfhtml(nome, width, height, html) {
	document.writeln('<object type="application/x-shockwave-flash" data="'+ nome +'.swf" width="'+ width +'" height="'+ height +'">');
	document.writeln('<param name="movie" value="'+ nome +'.swf" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent">');	
	document.writeln(html);
	document.writeln('</object>');
	
}