<!--
function showSwf(url, width, height) {
	var tmpPmt = "";
	var tmpPmt2 = "";

	document.writeln("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" + width + "' height='" + height + "' id='flash' align='middle'>");
	document.writeln("<param name='allowScriptAccess' value='sameDomain' />");
    document.writeln("<param name='wmode'   value='transparent'>"      );
	document.writeln("<param name='quality' value='high' />");
	document.writeln("<param name='bgcolor' value='#ffffff' />");
	
	for (i = 3; i < arguments.length; i++ ) {
		arguments[i] = arguments[i].replace(" ", "");
		tmpArg = arguments[i].split(",");
		document.writeln("<param name='" + tmpArg[0] + "' value='" + tmpArg[1] + "'>");
		tmpPmt = tmpPmt + tmpArg[0] + "=" + tmpArg[1] + "&";
		tmpPmt2 = tmpPmt2 + tmpArg[0] + "='" + tmpArg[1] + "' ";
	}

	if (tmpPmt != "") {
		tmpPmt = tmpPmt.substr(0, tmpPmt.length - 1);
		tmpPmt = "?" + tmpPmt;
	}

	document.writeln("<param name='movie' value='" + url + tmpPmt + "' />");
	document.writeln("<embed src='" + url + "' quality='high' bgcolor='#ffffff' width='" + width + "' height='" + height + "' name='flash' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' " + tmpPmt2 + "/>");
	document.writeln("</object>");
}
//-->
