// Copyright by SonsOf.net

function swf_postload(title, sh, swfDir){

	sfPath = sh["swfFileName"];
	if(swfDir) sfPath = swfDir +sfPath;

	shtml = "<object type=\"application/x-shockwave-flash\"";
	shtml += "\ndata=\"";
	shtml += sfPath;
	shtml += "\"";
	shtml += "\nwidth=\"";
	shtml += sh["width"];
	shtml += "\"\nheight=\"";
	shtml += sh["height"];
	shtml += "\"\nid=\"";
	shtml += sh["title"];
	shtml += "\">";
	shtml += "\n\t<param name=\"movie\" value=\"";
	shtml += sfPath;
	shtml += "\" />\n\t<param name=\"quality\" value=\"";
	shtml += sh["quality"];
	shtml += "\" />";

	if(sh["wmode"]){
		shtml += "\n\t<param name=\"wmode\" value=\"";
		shtml += sh["wmode"];
		shtml += "\" />";
	}

	shtml += "\n</object>";

	var md = document;
	md.getElementById(title).innerHTML = shtml;
}

