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

