if(!md) var md = document;

function audio_load(divID, swfPath, swfWD, swfHG, swfBgColor)
{
	var shtml = "";
    shtml += "\n<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-44455354000\"";
    shtml += "\ncodebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\"";
    shtml += "\nWIDTH=\"";
    shtml += swfWD;
    shtml += "\"\nHEIGHT=\"";
    shtml += swfHG;
    shtml += "\"\nid=\"";
    shtml += "swfMovie";
    shtml += "\"\nALIGN=\"\">\n\t<PARAM NAME=\"movie\" VALUE=\"";
    shtml += swfPath;
    shtml += "\" ></PARAM>\n\t<PARAM NAME=\"quality\" VALUE=\"high\" ></PARAM>\n\t<PARAM NAME=\"bgcolor\" VALUE=\"";
    shtml += swfBgColor;
    shtml += "\" ></PARAM>\n\t<param name=\"allowScriptAccess\" VALUE=\"sameDomain\" ></PARAM>";
    shtml += "\n\t\t<EMBED src=\"";
    shtml += swfPath;
    shtml += "\"\n\t\tquality=\"high\"\n\t\t bgcolor=\"";
    shtml += swfBgColor;
    shtml += "\"\n\t\tWIDTH=\"";
    shtml += swfWD;
    shtml += "\"\n\t\tHEIGHT=\"";
    shtml += swfHG;
    shtml += "\"\n\t\tNAME=\"";
    shtml += "swfMovie";
    shtml += "\"\n\t\tALIGN=\"\"";
    shtml += "\n\t\tallowScriptAccess=\"sameDomain\"";
    shtml += "\n\t\tTYPE=\"application/x-shockwave-flash\"";
    shtml += "\n\t\tswLiveConnect=\"true\"";
    shtml += "\n\t\tPLUGINSPAGE=";
    shtml += "\"http://www.macromedia.com/go/getflashplayer\" >\n</EMBED>\n</OBJECT>";

		//	alert(shtml);
    var d = md.getElementById(divID);
    d.innerHTML = shtml;
		//	alert(d.innerHTML);
}
