<!--/* Copyright  2003-2007 Rustici Software, LLC  All Rights Reserved. www.scorm.com */-->
<HTML>
	<HEAD>
		<meta name='viewport' content='initial-scale = 1, minimum-scale = 1, maximum-scale = 1'/>
		<meta http-equiv="x-ua-compatible" content="IE=9">
		<TITLE>@MOVIETITLE</TITLE>
		<script language="JavaScript1.2" src="scormdriver.js"></script>
		<script src="http://code.jquery.com/jquery-latest.js"></script>
		<script src="standard.js" language="JavaScript1.2"></script>
				
		<script language="JavaScript1.2">
		var g_bIsInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
		var SD = window; // setup a reference to the SD
		// this is the flag for triggering the custom comms
		SD.AICC_USE_CUSTOM_COMMS = true;
		//ShowDebugWindow();
		
		var num_tries = 0;
		var total_tries = 10;
		var checker;
		
		function isHandheldDevice()
		{
			var lDevicesUserAgents = ["blackberry","android","iphone","ipad","symbian","smartphone","ios","windows ce","webos"];
			var lDeviceUserAgentString = navigator.userAgent.toLowerCase();
			for(var i=0; i < lDevicesUserAgents.length; ++i)
			{	
				if(lDeviceUserAgentString.toLowerCase().indexOf(lDevicesUserAgents[i]) != -1)
					return true;
			}
			
			return false;
		}
		
		function LoadContent(){
			//	Do nothing - this function is required by the driver
			if (!isHandheld)	
			{
				document.getElementById('scormdriver_content').contentWindow.LoadContent();
			}
			else
			{
				scormdriver_content.LoadContent();
			}
		}
		
		var oldBeforeUnloadHandler = null;
		var oldUnloadHandler = null;

		function CPDoBeforeUnload()
		{
			if(window.onbeforeunload)
				window.onbeforeunload();

			if(oldBeforeUnloadHandler)
				oldBeforeUnloadHandler();		
		}

		function CPDoUnload()
		{
			if(window.onunload)
				window.onunload();
			if(oldUnloadHandler)
				oldUnloadHandler();		
		}
		
		function RegisterForCloseOnTopWindow()
		{
			if(isIE && window.top && window.top != window.self)
			{
				var targetWin = window.top;
				if(targetWin.onbeforeunload)
				{
					if(targetWin.onbeforeunload != window.onbeforeunload)
					{
						oldBeforeUnloadHandler = targetWin.onbeforeunload;
					}
				}
				if(targetWin.onunload)
				{
					if(targetWin.onunload != window.onunload)
					{
						oldBeforeUnloadHandler = targetWin.onunload;
					}
				}
				targetWin.onbeforeunload = CPDoBeforeUnload;
				targetWin.onunload = CPDoUnload;
			}
		}

		function isIE()
		{
			var agt=navigator.userAgent.toLowerCase();
			var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
			return is_ie;
		}
		
		function DoCPExit()
		{
			if(window != window.parent && window.parent && window.parent.hasOwnProperty("DoCPExit"))
			{
				window.parent.DoCPExit();
			}
			else
			{
				window.close();
			}
		}
		
		var isHandheld=isHandheldDevice();
		function OnLoad_Activities()
		{	
			var lFrameset = document.getElementById("myFrameset");
			var newFrame = document.createElement("frame");
			newFrame.id = "scormdriver_content";
			newFrame.name = "scormdriver_content";			
			var lParamString = window.location.toString().split("?")[1];
			if(lParamString != undefined)
				lParamString = "?" + lParamString;
			else
				lParamString = "";
			if (isHandheld)
			{
				newFrame.src="@RD_MQZ_MANIFEST_HTML5_NAME" + lParamString;
			}
			else 
			{
				// do only for swf since html does it inside the iframe
				RegisterForCloseOnTopWindow();
				newFrame.src="@RD_MQZ_MANIFEST_HTM_NAME" + lParamString;
				
				newFrame.onload = function(e)
				{				
					//console.log("Starting checker");
					checker = setInterval(CheckForAICCComm,100);
				};
			}			
			
			lFrameset.insertBefore(newFrame,lFrameset.firstChild);
		}
		
		function HTMLContentLoadedCallback()
		{
			//console.log("Starting checker");
			checker = setInterval(CheckForAICCComm,100);
		}
		
		function defineCustomAICCCommunication()
		{
		
			// override this function from the SCORM Driver to handle the custom comms
			//aghose: this one is in AICCComm 
			window.CustomAICCCommunication = function(strAICCURL, strPostData, strRequestType, strCallBack) 
			{
					
				WriteToDebug('in MakeHttpPostCall');
				WriteToDebug('Details of Call:');
				WriteToDebug("AICCURL:"+String(strAICCURL));
				WriteToDebug("Post Data:"+strPostData);
				WriteToDebug("RequestType:"+strRequestType);
				WriteToDebug("CallBack:"+strCallBack);
				WriteToDebug("---End Details of Call---");
					
				if (!isHandheld)
					document.getElementById('AICCPostRouter').contentWindow.makeHTTPPost(String(strAICCURL), strPostData, strRequestType, strCallBack);
				else
				{					
					WriteToDebug("HTML Post Router must be called here.");
					//Uncomment this line to run across domain for HTML5
					//document.getElementById('AICCPostRouter_HTML').contentWindow.makeHTTPPost(String(strAICCURL), strPostData, strRequestType, strCallBack);
				}
					
				return;
					
					
				if (!isHandheld)	
				{
					var CaptivateAICCMovie = document.getElementById('AICCPostRouter').contentWindow.Captivate;       
					
					CaptivateAICCMovie =  window.frames["AICCPostRouter"].document.getElementById('Captivate');
					WriteToDebug("CaptivateAICCMovie:"+CaptivateAICCMovie);
					
					//var x =  window.frames["AICCPostRouter"].document.getElementById('Captivate');
					//console.log("Trying to obtain movie using frames elements:"+x);
					
					if(typeof CaptivateAICCMovie == 'object')
					{
						CaptivateAICCMovie.makeHTTPPost(String(strAICCURL), strPostData, strRequestType, strCallBack);
					}
				}
			}
		}
		
		var unloaded = false;
		function BeforeUnload()
		{
			if (!isHandheld)	
			{
				if(unloaded == true)
				{
					if(document.getElementById('AICCPostRouter') && document.getElementById('AICCPostRouter').contentWindow)
						document.getElementById('AICCPostRouter').contentWindow.flushQueue();
					return;
				}
				unloaded = true;
				document.getElementById('scormdriver_content').contentWindow.flushQueue();
				document.getElementById('AICCPostRouter').contentWindow.flushQueue();
				if(!IsRunningInConnect())
					Unload();
			}
		}
		
		
		
		
		//for adobe
		function InitializeCalls()
		{
			
			WriteToDebug("In InitializeCalls()");
			
			//this has to be here for the Router SWF- this is the first call it makes
			//now load the actual content SWF
			if (!isHandheld)	
				document.getElementById('scormdriver_content').contentWindow.EmbedSWF();
		
		}

		function CheckForAICCComm(){
			
			num_tries += 1;
			WriteToDebug("CP: In CheckForAICCComm, trial num: " + num_tries);
			
			if(num_tries > total_tries){
				WriteToDebug("CP: In CheckForAICCComm exceeded total tries...aborting further calls to this function.");
				clearInterval(checker);
				return;
			}
			
			if(typeof(window.AICCComm.MakeGetParamRequest) == 'function')
			{
				WriteToDebug("CP: AICCComm has been initialized.");
				clearInterval(checker);
				
				if (!isHandheld)	
				{
					if(window.AICCComm.blnAppearsToBeCrossDomain == true)
						document.getElementById('AICCPostRouter').contentWindow.EmbedSWF();
					else
						document.getElementById('scormdriver_content').contentWindow.EmbedSWF();
				}
				defineCustomAICCCommunication();				
				if (isHandheld)
					scormdriver_content.cp.LoadActivities();
			}
		}
		
	
		//create the callback that we're passing through
		window.ProcessLMSResult = function(requestType, responseStr)
		{
			WriteToDebug("In ProcessLMSResult with:"+requestType+","+responseStr);
			//catch the callback from the SWF and pass it along to the AICCComm frame
			window.AICCComm.ProcessLMSResult(requestType, responseStr);			
		};
		
		function UnloadActivities()
		{
			if (isHandheld)	
				scormdriver_content.cp.UnloadActivties();
			else
				BeforeUnload();
		}
		
		function IsRunningInConnect()
		{
			if(!document.location || !document.URL || !document.referrer)
					return false;
			return (document.location.href.indexOf("airspeed") != -1 || document.URL.indexOf("airspeed") != -1 || document.referrer.indexOf("airspeed") != -1)
		}
		
		</script>
	</HEAD>
	<frameset id="myFrameset" rows="100%,0%,0%,0%,0%" onload="OnLoad_Activities()" border="0" onbeforeunload="UnloadActivities()" onunload="UnloadActivities()">
		<!--frame id ="scormdriver_content" name="scormdriver_content" src="blank.html"-->
		<frame name="AICCComm" src="AICCComm.html">
		<frame name="rusticisoftware_aicc_results" src="blank.html">
		<frame name="NothingFrame" src="blank.html">
		<frame id="AICCPostRouter" name="AICCPostRouter" src="AICCPostRouter.html">
		<!--Uncomment below line to run across domain for HTML5 -->
		<!--frame id="AICCPostRouter_HTML" name="AICCPostRouter_HTML" src="AICCPostRouter_HTML.html"-->
		
	</frameset>
	<noframes>
		Your browser must be able to view frames for this content to display.
	</noframes>
</HTML>
