function caricaflash(nome,width,height)
{
	document.write('<object type="application/x-shockwave-flash" data="'+nome+'" width="'+width+'" height="'+height+'" >\n');
	document.write('<param name="movie" value="'+nome+'" />\n');
	document.write('<param name="LOOP" value="true" />\n');
        document.write('<param name="scale" value="showall" />\n');
	document.write('<param name="Wmode" value="transparent" />\n');
	document.write('</object>\n');
}
