function populateSWF()
{
	var doc = document;
	
	var shtml = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	shtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
	shtml += "  width=\"780\" height=\"286\" id=\"testat1\" align=\"\">";
	shtml += " <param name=movie value=\"flash/testata.swf\">";
	shtml += " <param name=quality value=high>";
	shtml += " <param name=wmode value=transparent>";	
	shtml += " <param name=bgcolor value=#FFFFFF>";
	shtml += " <embed src=\"flash/testata.swf\" quality=high wmode=\"transparent\" bgcolor=#FFFFFF  width=\"780\" height=\"286\" name=\"testat1\" align=\"\"";
	shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	shtml += "</object>";
		
	var dhtml = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	dhtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
	dhtml += "  width=\"213\" height=\"104\" id=\"listino\" align=\"\">";
	dhtml += " <param name=movie value=\"flash/listino.swf\">";
	dhtml += " <param name=quality value=high>";
	dhtml += " <param name=wmode value=transparent>";	
	dhtml += " <param name=bgcolor value=#FFFFFF>";
	dhtml += " <embed src=\"flash/listino.swf\" quality=high wmode=\"transparent\" bgcolor=#FFFFFF  width=\"213\" height=\"104\" name=\"listino\" align=\"\"";
	dhtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	dhtml += "</object>";
	
	var fhtml = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	fhtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
	fhtml += "  width=\"213\" height=\"280\" id=\"menuobj\" align=\"\">";
	fhtml += " <param name=movie value=\"flash/menu.swf\">";
	fhtml += " <param name=quality value=high>";
	fhtml += " <param name=wmode value=transparent>";
	fhtml += " <param name=bgcolor value=#FFFFFF>";
	fhtml += " <embed src=\"flash/menu.swf\" quality=high wmode=\"transparent\"  bgcolor=#FFFFFF  width=\"213\" height=\"280\" name=\"menuobj\" align=\"\"";
	fhtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	fhtml += "</object>";

	var v = doc.getElementById("testata1");
	var d = doc.getElementById("under");
	var f = doc.getElementById("menudiv");

	if(d) d.innerHTML = dhtml;
	if(v) v.innerHTML = shtml;
	if(f) f.innerHTML = fhtml;
	
}

window.onload = populateSWF;