function print_flash_movie(nomefile, width, height, version) {
	var str;

	str = ('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + version);
	str += ('" width="' + width + '" height="' + height + '">');
	str += ('<param name="movie" value="' + nomefile + '">');
	str += ('<param name="quality" value="high">');
	str += ('<embed src="' + nomefile + '" quality="high" ');
	str += ('swLiveConnect="false" width="' + width + '" height="' + height + '" border="0" type="application/x-shockwave-flash" ');
	str += ('pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
		
	document.write(str);

}
