<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function REACH_Digest_Online_cn_DoFSCommand(command, args) {
	var REACH_Digest_Online_cnObj = isInternetExplorer ? document.all.REACH_Digest_Online_cn : document.REACH_Digest_Online_cn;
	// Place your code here.
	if(command == "GOREACH") {
		document.GOREACH.GO.value = "SGSREACH_GO";
		document.GOREACH.CONTENT.value = args;
		document.GOREACH.CODE.value = Get_sep_code();
		document.GOREACH.THIS.value = window.location.href;
		document.GOREACH.action = Get_go_action();
		document.GOREACH.target = "_top";
		document.GOREACH.submit();
	}
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub REACH_Digest_Online_cn_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call REACH_Digest_Online_cn_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->