function populateSWF(swf){
	var shtml = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'";
	shtml += " codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0'";
	shtml += "  width='600' height='500' id='flash' align='right'>";
//										modifica nome file.swf
	shtml += " <param name=movie value='"+swf+"'>";
	shtml += " <param name=quality value='high'>";
	shtml += " <param name='wmode' value='transparent'>";
//						modifica nome file.swf
	shtml += " <embed src='"+swf+"' quality=high wmode='transparent' width='600' height='500' name='flash_a1' align='right'";
	shtml += "  type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>";
	shtml += "     </object>"

	var md = document;
	var d = md.getElementById('flash');
	d.innerHTML = shtml;
}


