//	WriteSWF_u_w_h( uri, width, height)
//	nasconde il tag object che non  accettato come w3c-standard
function WriteSWF_u_w_h(u, w, h)
{
	document.write('<object height="'+h+'" width="'+w+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" >\n');
	document.write('\t<param name="movie" value="'+u+'" />\n');
	document.write('\t<param name="quality" value="high" />\n');
	document.write('\t<param autoplay="false" />\n');
	document.write('\t<embed height="'+h+'" width="'+w+'" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src="'+u+'" quality="high" />\n');
	document.write('</object>\n');
	return true;
}
