//********************************************************
//Copyright © 2005-2007 Harbinger Knowledge Products
//all rights reserved
//********************************************************
   
// These variables store the values for output parameters of the interactivity 
var raptivity_score=0;               //Stores the interactivity score
var raptivity_completionStatus=""; //Stores the completion status of the interactivity
var raptivity_result="";           //Stores the result of the interactivity
var raptivity_maxscore=0;            //Stores the max score of the interactivity
function Id_MillionDollarQuiz_PurchTips_DoFSCommand(command, args) 
{
// This function sets the values of the variables
 
    switch(command)
    {
        case "CompletionStatus":
                 raptivity_completionStatus = args;
                 break;
        case "Score":
                 raptivity_score = args;
                 break;
        case "Result":
                 raptivity_result = args;
                 break;
        case "MaxScore":
                 raptivity_maxscore = args;
                 break;
    }
}

