
function Main_LivingActor()
{

	if(LA_GetCookie("ActorView")!="Viewed"){
		Intro_01();
		LA_SetCookie("ActorView", "Viewed", 30, true);
	}
	else{
		Intro_02();
	}

}

function call_home_DoFSCommand(command, args)
{

	if (command=="ShowLynda")
	{
		
		Init_LivingActor(LA_RELATIVE_PATH+LA_ACTORFILE_NAME+".swf");
	}
}

function startLinda(str){
	Init_LivingActor(LA_RELATIVE_PATH+LA_ACTORFILE_NAME+".swf");
}

LA_AllObservableAdded = true;

if(LA_GetCookie("ActorIsHere")!=null && LA_GetCookie("ActorIsHere")=="true") Init_LivingActor(LA_RELATIVE_PATH+LA_ACTORFILE_NAME+".swf");