home *** CD-ROM | disk | FTP | other *** search
- var modTitle = "Survey Title";
- var copyright = "⌐ 2003 My Organization Name";
- var useSCORM = true;
-
- EvalID = arrQuestions.length;
- thisID = EvalID + 1;
- arrQuestions[EvalID] = new objEvalQuestion(thisID, "radio");
- arrQuestions[EvalID].evalQuestion = "Rate how well you met the objective: <i>Enter Course Objective Here</i>.";
- thisOpt = arrQuestions[EvalID].evalDistractors.length;
- arrQuestions[EvalID].addDistractor(true);
- arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "1";
- arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Excellent";
- thisOpt = arrQuestions[EvalID].evalDistractors.length;
- arrQuestions[EvalID].addDistractor(true);
- arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "2";
- arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Good";
- thisOpt = arrQuestions[EvalID].evalDistractors.length;
- arrQuestions[EvalID].addDistractor(true);
- arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "3";
- arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Average";
- thisOpt = arrQuestions[EvalID].evalDistractors.length;
- arrQuestions[EvalID].addDistractor(true);
- arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "4";
- arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Below Average";
- thisOpt = arrQuestions[EvalID].evalDistractors.length;
- arrQuestions[EvalID].addDistractor(true);
- arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "5";
- arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Poor";
-
- intNumQuestions = arrQuestions.length;