function populateSWF(){	
	var ahtml = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	ahtml += " 		codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
	ahtml += "  	width=\"745\" height=\"225\" id=\"testata\" >";
	ahtml += " 		<param name=movie value=\"testata.swf?home=si\">";
	ahtml += " 		<param name=quality value=high>";
	ahtml += " 		<param name=\"wmode\" value=\"transparent\"> ";	
	ahtml += " 		<embed src=\"testata.swf?home=si\" quality=high wmode=\"transparent\" width=\"745\" height=\"225\" name=\"testata\" ";
	ahtml += "  	type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	ahtml += "   </object>"
	document.getElementById("testata").innerHTML = ahtml;
		
}window.onload = populateSWF;

