function insertSWF(f,w,h){var hasRightVersion = DetectFlashVer(7, 0, 0);if(hasRightVersion) {  // if we've detected an acceptable version	AC_FL_RunContent(				"src", f,				"width", w,				"height", h,				"align", "middle",				"id", "chartswf",				"quality", "high",				"bgcolor", "#FFFFFF",				"name", "chartswf",				"allowScriptAccess","sameDomain",				"type", "application/x-shockwave-flash",				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',				"pluginspage", "http://www.adobe.com/go/getflashplayer"	);  } else {  // flash is too old or we can't detect the plugin    var alternateContent = 'This content requires the Macromedia Flash Player.'   	+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';    document.write(alternateContent);  // insert non-flash content  }}