
var args = new Object();
var query = location.search.substring(1);

// Get query string
var pairs = query.split( "," );

// Break at comma
for ( var i = 0; i < pairs.length; i++ )
{
   var pos = pairs[i].indexOf('=');
   if( pos == -1 ) 
   {   
      continue; // Look for "name=value"
   }

   var argname  = pairs[i].substring( 0, pos );  // If not found, skip
   var value    = pairs[i].substring( pos + 1 ); // Extract the name
   args[argname] = unescape( value );            // Extract the value
} 

// Added by Screencast.com team for flash detection.
// The other values referenced here are already included within the view/playlist pages

// NOTE: The vars passed in are set on the view/playlist pages via javascript
var flash = checkFlash( minFlashVersionMajor, minFlashVersionMinor, minFlashVersionRev );
      
if ( flash == needsUpgrade )
{
   displayWarning( 'You appear to be using an outdated version of the Adobe Flash Player. If you experience problems viewing this media, please try upgrading to the latest version which is available for free at <a href="http://www.adobe.com/go/getflashplayer" target="_blank">http://www.adobe.com/go/getflashplayer</a>.', true, 0 );
}

/* End Screencast.com addition */


function loadPage()
{   
   apiCall( 'initialize' ); 

}

var isDisposed = false;

function dispose()
{
   if ( !isDisposed )
   {		
      if( apiVersion >= 1 )
      {
         apiCall( 'setValue', 'cmi.completion_status', 'completed' );
      }
      else
      {
         apiCall( 'setValue', 'cmi.core.lesson_status', 'completed' );
      }
      apiCall( 'terminate' );
      isDisposed = true;
   }
}


function OnLoad()
{
	
	loadPage();
		
}






