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

	document.write('<EMBED PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');

	document.write('</object>\n');
}

