function animazione_flash(domain,folder,swfname,width,height) {
	if(folder!=""){
		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("	<embed name='"+swfname+"' src='"+folder+"/"+swfname+"' quality='high' ");
	}else{
		document.write("<object type='application/x-shockwave-flash' data='http://"+domain+"/"+swfname+".swf' width='"+width+"' height='"+height+"' id='"+swfname+"'>");
		document.write("<param name='movie' value='http://"+domain+"/"+swfname+".swf' /> ");
		document.write("	<embed name='"+swfname+"' src='"+swfname+"' quality='high' ");
	}
	
	document.write("		   swLiveConnect='true' width='"+width+"' height='"+height+"' ");
	document.write("		   type='application/x-shockwave-flash' style='border-style: solid; border-width: 1;' pluginspage='http://www.macromedia.com/go/getflashplayer'>");
	document.write("	</embed>");	
	document.write("<param name='quality' value='high' />");
	document.write("<param name='wmode' value='opaque' />");
	document.write("</object>");
}
