function addFlash(fName,fWidth,fHeight,fId,fVars) {
	if (navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length) {
		document.write("<embed type=\"application/x-shockwave-flash\" src=\"" + fName + "\" width=\"" + fWidth + "\" height=\"" + fHeight + "\"  id=\"" + fId + "\" name=\"" + fId + "\" ");
		if (fVars != "") {
			document.write("flashvars=\"" + fVars + "\"");
		}
		document.write("/>");
	} else {
		document.write("<object id=\"" + fId + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"" + fWidth + "\" height=\"" + fHeight + "\">");
		document.write("<param name=\"MMplayerType\" value=\"ActiveX\" />");
		document.write("<param name=\"movie\" value=\"" + fName + "\" />");
		if (fVars != "") {
			document.write("<param name=\"flashvars\" value=\"" + fVars + "\" />");
		}
		document.write("</object>");
	}
}
