// JavaScript Document
//** --------------- start  fsCommand cookie scripting --------------------
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
var cookieName;
// 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 liaBuzzMovie_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call liaBuzzMovie_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
function findCookie() {
	var cookieData = new String(document.cookie)
	var cookieHeader = cookieName + "="
	var cookieStart = cookieData.indexOf(cookieHeader)
	if (cookieStart != -1){
	   return("true");
	}
	else {
	   document.cookie = cookieName + "=false"
	   return("false");
	}
}
function liaBuzzMovie_DoFSCommand(command, arg1) {
	//alert("cookieName = " + cookieName);
	var liaBuzzMovieObj = isInternetExplorer ? document.all.liaBuzzMovie : document.liaBuzzMovie;
	cookieName = arg1;
	cookieValue = findCookie();
	liaBuzzMovieObj.SetVariable("_root.liaCookie", cookieValue);
	//alert("cookieValue = " + cookieValue );
}

