<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
document.write("<iframe id=\"download\" name=\"download\" style=\"width:0px; height:0px; border: 0px\"></iframe>");
// Handle all the FSCommand messages in a Flash movie.
function player_DoFSCommand(command, args) {
	var playerObj = isInternetExplorer ? document.all.player : document.player;
	var arr=args.split(",");
	//alert(command);
	if(command == "playvideo"){
		//alert(document.getElementById("WMActiveXPlayer").PlayState)
		if(args == 1){
			document.getElementById("WMActiveXPlayer").style.visibility = 'visible';
			window.focus();
			//document.getElementById("WMActiveXPlayer").Play();
		}else {
			//document.getElementById("WMActiveXPlayer").Stop();
			document.getElementById("WMActiveXPlayer").style.visibility = 'hidden';
		}
	//alert(arr[4]);
	//alert(arr[0]+", "+arr[1]+", width="+arr[2]+", height="+arr[3]+", scrollbars=yes");
	}else
	if(command == "fullscreen"){
			document.getElementById("WMActiveXPlayer").style.visibility = 'visible';
			//alert("ok");
			//document.getElementById("WMActiveXPlayer").uiMode='full';
			//document.getElementById("WMActiveX").play();
			alert(document.getElementById("WMActiveX").playState);
			document.getElementById("WMActiveX").fullScreen = 'true';
	}else
	if(arr[4] == 1){
			frames['download'].location.href=arr[0];
	}else
	if(arr[4] == 2){
		w = window.open(arr[0], 'archive', "width=360, height=360, scrollbars=yes");
		w.focus();
	}else{
	//alert(arr[4]);
		w = window.open(arr[0], "\""+arr[1]+"\"", "width="+arr[2]+", height='"+arr[3]+", scrollbars=yes");
		w.focus();
	}
	//alert(document.getElementById("WMActiveXPlayer").style.visibility);
}
// 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 player_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call player_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->