function animazione_flash(domain,folder,swfname,width,height) {
	document.write("<object type='application/x-shockwave-flash' data='http://"+domain+"/"+folder+"/"+swfname+".swf' width='"+width+"' height='"+height+"' id='"+swfname+"'>");
	document.write("<param name='movie' value='http://"+domain+"/"+folder+"/"+swfname+".swf' /> ");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='wmode' value='transparent' />");
	document.write("</object>");
}
function animazione_flash_bgcolor(domain,folder,swfname,bgcolor,width,height) {
	document.write("<object type='application/x-shockwave-flash' data='http://"+domain+"/"+folder+"/"+swfname+".swf' width='"+width+"' height='"+height+"' id='"+swfname+"'>");
	document.write("<param name='movie' value='http://"+domain+"/"+folder+"/"+swfname+".swf' /> ");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='bgcolor' value='"+bgcolor+"' /> ");	
    document.write("	<embed name='"+swfname+"' src='"+folder+"/"+swfname+"' quality='high' ");
	document.write("		   bgcolor='"+bgcolor+"' swLiveConnect='true' width='"+width+"' height='"+height+"' ");
	document.write("		   type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'>");
	document.write("	</embed>");	
	document.write("</object>");
	
}