<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
	
function mySWF_DoFSCommand(command, args) {
	var mySWFObj = isInternetExplorer ? document.all.Interface : document.Interface;
	if(command=="getCookieHistory")
	{
		mySWFObj.setVariable(args,getSessionCookie("myhistory"));
	}else if(command=="getCookieIndex")
	{
		mySWFObj.setVariable(args,getSessionCookie("myindex"));
	}else if(command=="setCookieHistory")
	{
		setSessionCookie("myhistory",args);
	}else if(command=="setCookieIndex")
	{
		setSessionCookie("myindex",args);
	}else if(command=="loadurl")
	{
		var newURL=urlcodes[args];
		if(typeof(newURL)=="string")
		{
			window.location=newURL;
		}
	}else if(command=="alert")
	{
		alert("hehe:"+args);
	}
	//
	// Place your code here.
	//
}
// 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 Interface_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call Interface_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->
