function populateSWF(){
	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,29,0\"";
	shtml += "  width=\"100%\" height=\"100%\" id=\"macishop\" align=\"\">";
	shtml += " <param name=movie value=\"index.swf\">";
	shtml += " <param name=quality value=high>";
	shtml += " <param name=wmode value=transparent>";
	shtml += " <embed src=\"index.swf\" quality=high wmode=transparent width=\"100%\" height=\"100%\" name=\"macishop\" align=\"\"";
	shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	shtml += "     </object>"


	var md = document;
	var d = md.getElementById("swfcont");
	d.innerHTML = shtml;
}

window.onload = populateSWF;

