

//<![CDATA[

<!--


function Client(){
//if not a DOM browser, hopeless
	this.min = false; if (document.getElementById){this.min = true;};

	this.ua = navigator.userAgent;
	this.name = navigator.appName;
	this.ver = navigator.appVersion;  

//Get data about the browser
	this.mac = (this.ver.indexOf('Mac') != -1);
	this.win = (this.ver.indexOf('Windows') != -1);

//Look for Gecko
	this.gecko = (this.ua.indexOf('Gecko') > 1);
	if (this.gecko){
		this.geckoVer = parseInt(this.ua.substring(this.ua.indexOf('Gecko')+6, this.ua.length));
		if (this.geckoVer < 20020000){this.min = false;}
	}
	
//Look for Firebird
	this.firebird = (this.ua.indexOf('Firebird') > 1);
	
//Look for Safari
	this.safari = (this.ua.indexOf('Safari') > 1);
	if (this.safari){
		this.gecko = false;
	}
	
//Look for IE
	this.ie = (this.ua.indexOf('MSIE') > 0);
	if (this.ie){
		this.ieVer = parseFloat(this.ua.substring(this.ua.indexOf('MSIE')+5, this.ua.length));
		if (this.ieVer < 5.5){this.min = false;}
	}
	
//Look for Opera
	this.opera = (this.ua.indexOf('Opera') > 0);
	if (this.opera){
		this.operaVer = parseFloat(this.ua.substring(this.ua.indexOf('Opera')+6, this.ua.length));
		if (this.operaVer < 7.04){this.min = false;}
	}
	if (this.min == false){
		alert('Your browser may not be able to handle this page.');
	}
	
//Special case for the horrible ie5mac
	this.ie5mac = (this.ie&&this.mac&&(this.ieVer<6));
}

var C = new Client();

//for (prop in C){
//	alert(prop + ': ' + C[prop]);
//}



//CODE FOR HANDLING NAV BUTTONS AND FUNCTION BUTTONS

//[strNavBarJS]
function NavBtnOver(Btn){
	if (Btn.className != 'NavButtonDown'){Btn.className = 'NavButtonUp';}
}

function NavBtnOut(Btn){
	Btn.className = 'NavButton';
}

function NavBtnDown(Btn){
	Btn.className = 'NavButtonDown';
}
//[/strNavBarJS]

function FuncBtnOver(Btn){
	if (Btn.className != 'FuncButtonDown'){Btn.className = 'FuncButtonUp';}
}

function FuncBtnOut(Btn){
	Btn.className = 'FuncButton';
}

function FuncBtnDown(Btn){
	Btn.className = 'FuncButtonDown';
}

function FocusAButton(){
	if (document.getElementById('CheckButton1') != null){
		document.getElementById('CheckButton1').focus();
	}
	else{
		if (document.getElementById('CheckButton2') != null){
			document.getElementById('CheckButton2').focus();
		}
		else{
			document.getElementsByTagName('button')[0].focus();
		}
	}
}




//CODE FOR HANDLING DISPLAY OF POPUP FEEDBACK BOX

var topZ = 1000;

function ShowMessage(Feedback){
	var Output = Feedback + '<br /><br />';
	document.getElementById('FeedbackContent').innerHTML = Output;
	var FDiv = document.getElementById('FeedbackDiv');
	topZ++;
	FDiv.style.zIndex = topZ;
	FDiv.style.top = TopSettingWithScrollOffset(30) + 'px';

	FDiv.style.display = 'block';

	ShowElements(false, 'input');
	ShowElements(false, 'select');
	ShowElements(false, 'object');

//Focus the OK button
	setTimeout("document.getElementById('FeedbackOKButton').focus()", 50);
	
//
//	RefreshImages();
//
}

//Added code to work around Quicktime bug for 6.0.4.24.
function ShowElements(Show, TagName){
//Special for IE bug -- hide all the form elements that will show through the popup
	if ((C.ie)||(TagName == 'object')){
		var Els = document.getElementsByTagName(TagName);
		for (var i=0; i<Els.length; i++){
			if (Show == true){
				Els[i].style.visibility = 'visible';
			}
			else{
				Els[i].style.visibility = 'hidden';
			}
		}
	} 
}

function HideFeedback(){
	document.getElementById('FeedbackDiv').style.display = 'none';
	ShowElements(true, 'input');
	ShowElements(true, 'select');
	ShowElements(true, 'object');
	if (Finished == true){
		Finish();
	}
}


//GENERAL UTILITY FUNCTIONS AND VARIABLES

//PAGE DIMENSION FUNCTIONS
function PageDim(){
//Get the page width and height
	this.W = 600;
	this.H = 400;
	this.W = document.getElementsByTagName('body')[0].clientWidth;
	this.H = document.getElementsByTagName('body')[0].clientHeight;
}

var pg = null;

function GetPageXY(El) {
	var XY = {x: 0, y: 0};
	while(El){
		XY.x += El.offsetLeft;
		XY.y += El.offsetTop;
		El = El.offsetParent;
	}
	return XY;
}

function GetScrollTop(){
	if (document.documentElement && document.documentElement.scrollTop){
		return document.documentElement.scrollTop;
	}
	else{
		if (document.body){
 			return document.body.scrollTop;
		}
		else{
			return window.pageYOffset;
		}
	}
}

function GetViewportHeight(){
	if (window.innerHeight){
		return window.innerHeight;
	}
	else{
		return document.getElementsByTagName('body')[0].clientHeight;
	}
}

function TopSettingWithScrollOffset(TopPercent){
	var T = Math.floor(GetViewportHeight() * (TopPercent/100));
	return GetScrollTop() + T; 
}

//CODE FOR AVOIDING LOSS OF DATA WHEN BACKSPACE KEY INVOKES history.back()
var InTextBox = false;

function SuppressBackspace(e){ 
	if (InTextBox == true){return;}
	if (C.ie) {
		thisKey = window.event.keyCode;
	}
	else {
		thisKey = e.keyCode;
	}

	var Suppress = false;

	if (thisKey == 8) {
		Suppress = true;
	}

	if (Suppress == true){
		if (C.ie){
			window.event.returnValue = false;	
			window.event.cancelBubble = true;
		}
		else{
			e.preventDefault();
		}
	}
}

if (C.ie){
	document.attachEvent('onkeydown',SuppressBackspace);
	window.attachEvent('onkeydown',SuppressBackspace);
}
else{
	if (window.addEventListener){
		window.addEventListener('keypress',SuppressBackspace,false);
	}
}

function ReduceItems(InArray, ReduceToSize){
	var ItemToDump=0;
	var j=0;
	while (InArray.length > ReduceToSize){
		ItemToDump = Math.floor(InArray.length*Math.random());
		InArray.splice(ItemToDump, 1);
	}
}

function Shuffle(InArray){
	var Num;
	var Temp = new Array();
	var Len = InArray.length;

	var j = Len;

	for (var i=0; i<Len; i++){
		Temp[i] = InArray[i];
	}

	for (i=0; i<Len; i++){
		Num = Math.floor(j  *  Math.random());
		InArray[i] = Temp[Num];

		for (var k=Num; k < (j-1); k++) {
			Temp[k] = Temp[k+1];
		}
		j--;
	}
	return InArray;
}

function WriteToInstructions(Feedback) {
	document.getElementById('InstructionsDiv').innerHTML = Feedback;

	RefreshImages();

}



Imgs = new Array();

function PreloadImages(){
	var a = PreloadImages.arguments;
	for (var i=0; i<a.length; i++){
		Imgs[i] = new Image();
		Imgs[i].src = a[i];
	}
}

function RefreshImages(){
	for (var i=0; i<document.images.length; i++){
		if (document.images[i].name.substring(0,6) != 'NavBar'){
			document.images[i].src = document.images[i].src;
		}
	}
}


function EscapeDoubleQuotes(InString){
	return InString.replace(/"/g, '&quot;')
}

function TrimString(InString){
        var x = 0;

        if (InString.length != 0) {
                while ((InString.charAt(InString.length - 1) == '\u0020') || (InString.charAt(InString.length - 1) == '\u000A') || (InString.charAt(InString.length - 1) == '\u000D')){
                        InString = InString.substring(0, InString.length - 1)
                }

                while ((InString.charAt(0) == '\u0020') || (InString.charAt(0) == '\u000A') || (InString.charAt(0) == '\u000D')){
                        InString = InString.substring(1, InString.length)
                }

                while (InString.indexOf('  ') != -1) {
                        x = InString.indexOf('  ')
                        InString = InString.substring(0, x) + InString.substring(x+1, InString.length)
                 }

                return InString;
        }

        else {
                return '';
        }
}

function FindLongest(InArray){
	if (InArray.length < 1){return -1;}

	var Longest = 0;
	for (var i=1; i<InArray.length; i++){
		if (InArray[i].length > InArray[Longest].length){
			Longest = i;
		}
	}
	return Longest;
}

//UNICODE CHARACTER FUNCTIONS
function IsCombiningDiacritic(CharNum){
	var Result = (((CharNum >= 0x0300)&&(CharNum <= 0x370))||((CharNum >= 0x20d0)&&(CharNum <= 0x20ff)));
	Result = Result || (((CharNum >= 0x3099)&&(CharNum <= 0x309a))||((CharNum >= 0xfe20)&&(CharNum <= 0xfe23)));
	return Result;
}

function IsCJK(CharNum){
	return ((CharNum >= 0x3000)&&(CharNum < 0xd800));
}

//SETUP FUNCTIONS
//BROWSER WILL REFILL TEXT BOXES FROM CACHE IF NOT PREVENTED
function ClearTextBoxes(){
	var NList = document.getElementsByTagName('input');
	for (var i=0; i<NList.length; i++){
		if ((NList[i].id.indexOf('Guess') > -1)||(NList[i].id.indexOf('Gap') > -1)){
			NList[i].value = '';
		}
		if (NList[i].id.indexOf('Chk') > -1){
			NList[i].checked = '';
		}
	}
}

//EXTENSION TO ARRAY OBJECT
function Array_IndexOf(Input){
	var Result = -1;
	for (var i=0; i<this.length; i++){
		if (this[i] == Input){
			Result = i;
		}
	}
	return Result;
}
Array.prototype.indexOf = Array_IndexOf;

//IE HAS RENDERING BUG WITH BOTTOM NAVBAR
function RemoveBottomNavBarForIE(){
	if ((C.ie)&&(document.getElementById('Reading') != null)){
		if (document.getElementById('BottomNavBar') != null){
			document.getElementById('TheBody').removeChild(document.getElementById('BottomNavBar'));
		}
	}
}




//HOTPOTNET-RELATED CODE

var HPNStartTime = (new Date()).getTime();
var SubmissionTimeout = 30000;
var Detail = ''; //Global that is used to submit tracking data

function Finish(){
//If there's a form, fill it out and submit it
	if (document.store != null){
		Frm = document.store;
		Frm.starttime.value = HPNStartTime;
		Frm.endtime.value = (new Date()).getTime();
		Frm.mark.value = Score;
		Frm.detail.value = Detail;
		Frm.submit();
	}
}



//JQUIZ CORE JAVASCRIPT CODE

var CurrQNum = 0;
var CorrectIndicator = 'Richtig!';
var IncorrectIndicator = 'Falsch!';
var YourScoreIs = 'Dein Ergebnis ist:';
var ContinuousScoring = true;
var CorrectFirstTime = 'Beim ersten Mal richtig beantwortete Fragen:';
var ShowCorrectFirstTime = true;
var ShuffleQs = true;
var ShuffleAs = true;
var DefaultRight = 'Super!';
var DefaultWrong = 'Leider falsch, versuche es noch einmal!';
var QsToShow = 50;
var Score = 0;
var Finished = false;
var Qs = null;
var QArray = new Array();
var ShowingAllQuestions = false;
var ShowAllQuestionsCaption = 'Alle Fragen anzeigen';
var ShowOneByOneCaption = 'Show questions one by one';
var State = new Array();
var Feedback = '';
var TimeOver = false;
var strInstructions = '';

//The following variable can be used to add a message explaining that
//the question is finished, so no further marking will take place.
var strQuestionFinished = '';

function CompleteEmptyFeedback(){
	var QNum, ANum;
	for (QNum=0; QNum<I.length; QNum++){
//Only do this if not multi-select
		if (I[QNum][2] != '3'){
  		for (ANum = 0; ANum<I[QNum][3].length; ANum++){
  			if (I[QNum][3][ANum][1].length < 1){
  				if (I[QNum][3][ANum][2] > 0){
  					I[QNum][3][ANum][1] = DefaultRight;
  				}
  				else{
  					I[QNum][3][ANum][1] = DefaultWrong;
  				}
  			}
  		}
		}
	}
}

function SetUpQuestions(){
	var AList = new Array(); 
	var QList = new Array();
	var i, j;
	Qs = document.getElementById('Questions');
	while (Qs.getElementsByTagName('li').length > 0){
		QList.push(Qs.removeChild(Qs.getElementsByTagName('li')[0]));
	}
	var DumpItem = 0;
	if (QsToShow > QList.length){
		QsToShow = QList.length;
	}
	while (QsToShow < QList.length){
		DumpItem = Math.floor(QList.length*Math.random());
		for (j=DumpItem; j<(QList.length-1); j++){
			QList[j] = QList[j+1];
		}
		QList.length = QList.length-1;
	}
	if (ShuffleQs == true){
		QList = Shuffle(QList);
	}
	if (ShuffleAs == true){
		var As;
		for (var i=0; i<QList.length; i++){
			As = QList[i].getElementsByTagName('ol')[0];
			if (As != null){
  			AList.length = 0;
				while (As.getElementsByTagName('li').length > 0){
					AList.push(As.removeChild(As.getElementsByTagName('li')[0]));
				}
				AList = Shuffle(AList);
				for (j=0; j<AList.length; j++){
					As.appendChild(AList[j]);
				}
			}
		}
	}
	
	for (i=0; i<QList.length; i++){
		Qs.appendChild(QList[i]);
		QArray[QArray.length] = QList[i];
	}

//Show the first item
	QArray[0].style.display = '';
	
//Now hide all except the first item
	for (i=1; i<QArray.length; i++){
		QArray[i].style.display = 'none';
	}		
	SetQNumReadout();
	
	SetFocusToTextbox();
}

function SetFocusToTextbox(){
//if there's a textbox, set the focus in it
	if (QArray[CurrQNum].getElementsByTagName('input')[0] != null){
		QArray[CurrQNum].getElementsByTagName('input')[0].focus();
//and show a keypad if there is one
		if (document.getElementById('CharacterKeypad') != null){
			document.getElementById('CharacterKeypad').style.display = 'block';
		}
	}
	else{
  	if (QArray[CurrQNum].getElementsByTagName('textarea')[0] != null){
  		QArray[CurrQNum].getElementsByTagName('textarea')[0].focus();	
//and show a keypad if there is one
			if (document.getElementById('CharacterKeypad') != null){
				document.getElementById('CharacterKeypad').style.display = 'block';
			}
		}
//This added for 6.0.4.11: hide accented character buttons if no textbox
		else{
			if (document.getElementById('CharacterKeypad') != null){
				document.getElementById('CharacterKeypad').style.display = 'none';
			}
		}
	}
}

function ChangeQ(ChangeBy){
//The following line prevents moving to another question until the current
//question is answered correctly. Uncomment it to enable this behaviour. 
//	if (State[CurrQNum][0] == -1){return;}
	if (((CurrQNum + ChangeBy) < 0)||((CurrQNum + ChangeBy) >= QArray.length)){return;}
	QArray[CurrQNum].style.display = 'none';
	CurrQNum += ChangeBy;
	QArray[CurrQNum].style.display = '';
//Undocumented function added 10/12/2004
	ShowSpecialReadingForQuestion();
	SetQNumReadout();
	SetFocusToTextbox();
}

var HiddenReadingShown = false;
function ShowSpecialReadingForQuestion(){
//Undocumented function for showing specific reading text elements which change with each question
//Added on 10/12/2004
	if (document.getElementById('ReadingDiv') != null){
		if (HiddenReadingShown == true){
			document.getElementById('ReadingDiv').innerHTML = '';
		}
		if (QArray[CurrQNum] != null){
//Fix for 6.0.4.25
			var Children = QArray[CurrQNum].getElementsByTagName('div');
			for (var i=0; i<Children.length; i++){
			if (Children[i].className=="HiddenReading"){
					document.getElementById('ReadingDiv').innerHTML = Children[i].innerHTML;
					HiddenReadingShown = true;
//Hide the ShowAllQuestions button to avoid confusion
					if (document.getElementById('ShowMethodButton') != null){
						document.getElementById('ShowMethodButton').style.display = 'none';
					}
				}
			}	
		}
	}
}

function SetQNumReadout(){
	document.getElementById('QNumReadout').innerHTML = (CurrQNum+1) + ' / ' + QArray.length;
	if ((CurrQNum+1) >= QArray.length){
		if (document.getElementById('NextQButton') != null){
			document.getElementById('NextQButton').style.visibility = 'hidden';
		}
	}
	else{
		if (document.getElementById('NextQButton') != null){
			document.getElementById('NextQButton').style.visibility = 'visible';
		}
	}
	if (CurrQNum <= 0){
		if (document.getElementById('PrevQButton') != null){
			document.getElementById('PrevQButton').style.visibility = 'hidden';
		}
	}
	else{
		if (document.getElementById('PrevQButton') != null){
			document.getElementById('PrevQButton').style.visibility = 'visible';
		}
	}
}

var I=new Array();
I[0]=new Array();I[0][0]=100;
I[0][1]='';
I[0][2]='0';
I[0][3]=new Array();
I[0][3][0]=new Array('Programme','',0,0,1);
I[0][3][1]=new Array('Dateien und Ordner','',0,0,1);
I[0][3][2]=new Array('Ger\u00E4te des Computers (alles, was man "angreifen" kann)','',1,100,1);
I[0][3][3]=new Array('Betriebssysteme','',0,0,1);
I[1]=new Array();I[1][0]=100;
I[1][1]='';
I[1][2]='0';
I[1][3]=new Array();
I[1][3][0]=new Array('Programme (alles, was man nicht angreifen kann)','Stimmt!',1,100,1);
I[1][3][1]=new Array('Ger\u00E4te des Computers','Falsch',0,0,1);
I[1][3][2]=new Array('Laufwerke','Falsch',0,0,1);
I[1][3][3]=new Array('Touchscreen','Falsch',0,0,1);
I[2]=new Array();I[2][0]=100;
I[2][1]='';
I[2][2]='3';
I[2][3]=new Array();
I[2][3][0]=new Array('Maus','Richtig',1,100,1);
I[2][3][1]=new Array('Drucker','Leider nein!',0,0,1);
I[2][3][2]=new Array('Tastatur','Richtig',1,100,1);
I[2][3][3]=new Array('Touchpad','Richtig',1,100,1);
I[2][3][4]=new Array('Touchscreen','Richtig',1,100,1);
I[2][3][5]=new Array('Scanner','Richtig',1,100,1);
I[2][3][6]=new Array('Lautsprecher','Leider nein!',0,0,1);
I[2][3][7]=new Array('Plotter','Leider nein!',0,0,1);
I[3]=new Array();I[3][0]=100;
I[3][1]='';
I[3][2]='3';
I[3][3]=new Array();
I[3][3][0]=new Array('Touchscreen','Ja!',1,100,1);
I[3][3][1]=new Array('Maus','Nein',0,0,1);
I[3][3][2]=new Array('Drucker','Nein',0,0,1);
I[3][3][3]=new Array('Tastatur','Nein',0,0,1);
I[3][3][4]=new Array('Betriebssystem','Nein',0,0,1);
I[4]=new Array();I[4][0]=100;
I[4][1]='';
I[4][2]='3';
I[4][3]=new Array();
I[4][3][0]=new Array('Windows98','',0,0,1);
I[4][3][1]=new Array('WindowsXP','',0,0,1);
I[4][3][2]=new Array('Linux','',0,0,1);
I[4][3][3]=new Array('Unix','',0,0,1);
I[4][3][4]=new Array('MacOS','',0,0,1);
I[4][3][5]=new Array('Microsoft Office','',1,100,1);
I[5]=new Array();I[5][0]=100;
I[5][1]='';
I[5][2]='3';
I[5][3]=new Array();
I[5][3][0]=new Array('Laptop','',1,100,1);
I[5][3][1]=new Array('Desktop','',0,0,1);
I[5][3][2]=new Array('Mainframe','',0,0,1);
I[5][3][3]=new Array('CPU','',0,0,1);
I[5][3][4]=new Array('ZIP-Computer','',0,0,1);
I[5][3][5]=new Array('Plotter','',0,0,1);
I[5][3][6]=new Array('Curser','',0,0,1);
I[5][3][7]=new Array('Tower','',0,0,1);
I[6]=new Array();I[6][0]=100;
I[6][1]='';
I[6][2]='3';
I[6][3]=new Array();
I[6][3][0]=new Array('Mehr Arbeitsspeicher (RAM) einbauen','',1,100,1);
I[6][3][1]=new Array('eine gr\u00F6\u00DFere Festplatte kaufen','',0,0,1);
I[6][3][2]=new Array('st\u00E4rkeren Strom anschlie\u00DFen','',0,0,1);
I[6][3][3]=new Array('ein Laufwerk hinzuf\u00FCgen','',0,0,1);
I[7]=new Array();I[7][0]=100;
I[7][1]='';
I[7][2]='3';
I[7][3]=new Array();
I[7][3][0]=new Array('Hertz (MHz, GHz)','',1,100,1);
I[7][3][1]=new Array('RAM','',0,0,1);
I[7][3][2]=new Array('ROM','',0,0,1);
I[7][3][3]=new Array('Megabytes','',0,0,1);
I[7][3][4]=new Array('Gigabytes','',0,0,1);
I[8]=new Array();I[8][0]=100;
I[8][1]='';
I[8][2]='3';
I[8][3]=new Array();
I[8][3][0]=new Array('Festplatte','',1,100,1);
I[8][3][1]=new Array('Diskette','',1,100,1);
I[8][3][2]=new Array('CD-ROM','',1,100,1);
I[8][3][3]=new Array('DVD','',1,100,1);
I[8][3][4]=new Array('Magnetb\u00E4nder','',1,100,1);
I[8][3][5]=new Array('RAM','',0,0,1);
I[8][3][6]=new Array('ROM','',0,0,1);
I[9]=new Array();I[9][0]=100;
I[9][1]='';
I[9][2]='3';
I[9][3]=new Array();
I[9][3][0]=new Array('Der Inhalt des Lesespeichers geht beim Ausschalten nicht verloren','',1,100,1);
I[9][3][1]=new Array('Der Inhalt des Lesespeichers geht beim Ausschalten verloren','',0,0,1);
I[9][3][2]=new Array('Man kann im ROM Daten speichern, \u00E4hnlich wie auf einem ZIP-Laufwerk','',0,0,1);
I[10]=new Array();I[10][0]=100;
I[10][1]='';
I[10][2]='3';
I[10][3]=new Array();
I[10][3][0]=new Array('eine Million Bytes','',1,100,1);
I[10][3][1]=new Array('eine Milliarde Bytes','',0,0,1);
I[10][3][2]=new Array('1024 Bytes','',0,0,1);
I[10][3][3]=new Array('eine Billion Bytes','',0,0,1);
I[11]=new Array();I[11][0]=100;
I[11][1]='';
I[11][2]='3';
I[11][3]=new Array();
I[11][3][0]=new Array('eine Million Bytes','',0,0,1);
I[11][3][1]=new Array('eine Milliarde Bytes','',0,0,1);
I[11][3][2]=new Array('1024 Bytes','',1,100,1);
I[11][3][3]=new Array('eine Billion Bytes','',0,0,1);
I[12]=new Array();I[12][0]=100;
I[12][1]='';
I[12][2]='3';
I[12][3]=new Array();
I[12][3][0]=new Array('eine Billion Bytes','',0,0,1);
I[12][3][1]=new Array('eine Million Bytes','',0,0,1);
I[12][3][2]=new Array('eine Milliarde Bytes','',1,100,1);
I[12][3][3]=new Array('1024 Bytes','',0,0,1);
I[13]=new Array();I[13][0]=100;
I[13][1]='';
I[13][2]='3';
I[13][3]=new Array();
I[13][3][0]=new Array('Diskette','',1,100,1);
I[13][3][1]=new Array('CD-ROM','',0,0,1);
I[13][3][2]=new Array('Magnetb\u00E4nder','',0,0,1);
I[13][3][3]=new Array('Festplatte','',0,0,1);
I[13][3][4]=new Array('ZIP-Laufwerk','',0,0,1);
I[13][3][5]=new Array('Wechsellaufwerk','',0,0,1);
I[14]=new Array();I[14][0]=100;
I[14][1]='';
I[14][2]='3';
I[14][3]=new Array();
I[14][3][0]=new Array('Beim Formatieren werden alle Daten von der Diskette gel\u00F6scht','',1,100,1);
I[14][3][1]=new Array('Beim Formatieren werden Daten gesichert','',0,0,1);
I[14][3][2]=new Array('Beim Formatieren wird der Schreibschutz aktiviert','',0,0,1);
I[14][3][3]=new Array('Beim Formatieren werden nur die unwichtigen Datens\u00E4tze gel\u00F6scht','',0,0,1);
I[14][3][4]=new Array('Beim Formatieren werden Daten Viren gel\u00F6scht','',0,0,1);
I[14][3][5]=new Array('Beim Formatieren wird die Diskette in Sektoren  und Spuren eingeteilt','',1,100,1);
I[15]=new Array();I[15][0]=100;
I[15][1]='';
I[15][2]='3';
I[15][3]=new Array();
I[15][3][0]=new Array('erstellt kleine Programme','',1,100,1);
I[15][3][1]=new Array('steuert den Computer','',0,0,1);
I[15][3][2]=new Array('f\u00E4hrt den Computer hoch','',0,0,1);
I[15][3][3]=new Array('verwaltet Daten','',0,0,1);
I[15][3][4]=new Array('startet Anwendersoftware','',0,0,1);
I[15][3][5]=new Array('Dateien verschieben und kopieren','',0,0,1);
I[16]=new Array();I[16][0]=100;
I[16][1]='';
I[16][2]='3';
I[16][3]=new Array();
I[16][3][0]=new Array('Zentraleinheit','',1,100,1);
I[16][3][1]=new Array('Bussystem','',1,100,1);
I[16][3][2]=new Array('Arbeitsspeicher','',1,100,1);
I[16][3][3]=new Array('Anwenderprogramme','',0,0,1);
I[16][3][4]=new Array('Soundkarte','',0,0,1);
I[16][3][5]=new Array('Netzwerkkarte','',0,0,1);
I[17]=new Array();I[17][0]=100;
I[17][1]='';
I[17][2]='3';
I[17][3]=new Array();
I[17][3][0]=new Array('LAN','',1,100,1);
I[17][3][1]=new Array('WAN','',0,0,1);
I[17][3][2]=new Array('ISDN','',0,0,1);
I[17][3][3]=new Array('ASDL','',0,0,1);
I[17][3][4]=new Array('FTP','',0,0,1);
I[17][3][5]=new Array('PDF','',0,0,1);
I[18]=new Array();I[18][0]=100;
I[18][1]='';
I[18][2]='3';
I[18][3]=new Array();
I[18][3][0]=new Array('ein Netzwerk innerhalb eines Unternehmens','',1,100,1);
I[18][3][1]=new Array('ein Netzwerk mehrerer Unternehmen','',0,0,1);
I[18][3][2]=new Array('Ein weltweites Netzwerk','',0,0,1);
I[18][3][3]=new Array('eine besondere Art von Betriebssystem','',0,0,1);
I[19]=new Array();I[19][0]=100;
I[19][1]='';
I[19][2]='3';
I[19][3]=new Array();
I[19][3][0]=new Array('ein Netzwerk eines Unternehmens, an das auch Personen au\u00DFerhalb des Betriebes Anschluss haben','',1,100,1);
I[19][3][1]=new Array('ein Netzwerk innerhalb eines Unternehmens','',0,0,1);
I[19][3][2]=new Array('ein Netzwerk in einer Schule','',0,0,1);
I[19][3][3]=new Array('ein weltweites Netzwerk','',0,0,1);
I[20]=new Array();I[20][0]=100;
I[20][1]='';
I[20][2]='3';
I[20][3]=new Array();
I[20][3][0]=new Array('Ein Teil des Internets','',1,100,1);
I[20][3][1]=new Array('Das Internet','',0,0,1);
I[20][3][2]=new Array('Eine Suchmaschine','',0,0,1);
I[20][3][3]=new Array('Ein Betriebssystem','',0,0,1);
I[20][3][4]=new Array('Ein Massenspeicher','',0,0,1);
I[21]=new Array();I[21][0]=100;
I[21][1]='';
I[21][2]='3';
I[21][3]=new Array();
I[21][3][0]=new Array('Elektronische Post','',0,0,1);
I[21][3][1]=new Array('Handel \u00FCber Internet','',1,100,1);
I[21][3][2]=new Array('E-Mail versenden und empfangen','',0,0,1);
I[21][3][3]=new Array('Telebanking','',0,0,1);
I[22]=new Array();I[22][0]=100;
I[22][1]='';
I[22][2]='3';
I[22][3]=new Array();
I[22][3][0]=new Array('Elektronische Dokumente k\u00F6nnen nicht ber\u00FChrt werden.','',1,100,1);
I[22][3][1]=new Array('Elektronische Dokumente k\u00F6nnen nicht gedruckt werden.','',0,0,1);
I[22][3][2]=new Array('Elektronische Dokumente k\u00F6nnen nicht per E-Mail versendet werden.','',0,0,1);
I[22][3][3]=new Array('Elektronische Dokumente k\u00F6nnen nicht gelesen werden.','',0,0,1);
I[22][3][4]=new Array('Elektronische Dokumente k\u00F6nnen nicht gespeichert werden.','',0,0,1);
I[23]=new Array();I[23][0]=100;
I[23][1]='';
I[23][2]='3';
I[23][3]=new Array();
I[23][3][0]=new Array('Datenschutz','',0,0,1);
I[23][3][1]=new Array('Copyright','',0,0,1);
I[23][3][2]=new Array('Lizenz','',1,100,1);
I[23][3][3]=new Array('Modem','',0,0,1);
I[23][3][4]=new Array('Patent','',0,0,1);
I[24]=new Array();I[24][0]=100;
I[24][1]='';
I[24][2]='3';
I[24][3]=new Array();
I[24][3][0]=new Array('Central Processing Unit','',1,100,1);
I[24][3][1]=new Array('Control Password Unit','',0,0,1);
I[24][3][2]=new Array('Central Password User','',0,0,1);
I[24][3][3]=new Array('Central Programm User','',0,0,1);
I[25]=new Array();I[25][0]=100;
I[25][1]='';
I[25][2]='3';
I[25][3]=new Array();
I[25][3][0]=new Array('RAM','',1,100,1);
I[25][3][1]=new Array('ROM','',0,0,1);
I[25][3][2]=new Array('Festplatte','',0,0,1);
I[25][3][3]=new Array('Diskettenlaufwerk','',0,0,1);
I[25][3][4]=new Array('Magnetband','',0,0,1);
I[26]=new Array();I[26][0]=100;
I[26][1]='';
I[26][2]='3';
I[26][3]=new Array();
I[26][3][0]=new Array('Plotter','',1,100,1);
I[26][3][1]=new Array('Lautsprecher','',1,100,1);
I[26][3][2]=new Array('Touchscreen','',1,100,1);
I[26][3][3]=new Array('Monitor','',1,100,1);
I[26][3][4]=new Array('Tastatur','',0,0,1);
I[26][3][5]=new Array('Scanner','',0,0,1);
I[26][3][6]=new Array('Brenner','',0,0,1);
I[26][3][7]=new Array('Joystick','',0,0,1);
I[27]=new Array();I[27][0]=100;
I[27][1]='';
I[27][2]='3';
I[27][3]=new Array();
I[27][3][0]=new Array('PowerPoint','',1,100,1);
I[27][3][1]=new Array('Windows 2000','',0,0,1);
I[27][3][2]=new Array('Linux','',0,0,1);
I[27][3][3]=new Array('MacOS','',0,0,1);
I[27][3][4]=new Array('Unix','',0,0,1);
I[28]=new Array();I[28][0]=100;
I[28][1]='';
I[28][2]='3';
I[28][3]=new Array();
I[28][3][0]=new Array('Anwenderprogramme','',1,100,1);
I[28][3][1]=new Array('Lernprogramme','',0,0,1);
I[28][3][2]=new Array('Antivirenprogramme','',0,0,1);
I[28][3][3]=new Array('Betriebssysteme','',0,0,1);
I[28][3][4]=new Array('Arbeitsspeicher','',0,0,1);
I[29]=new Array();I[29][0]=100;
I[29][1]='';
I[29][2]='3';
I[29][3]=new Array();
I[29][3][0]=new Array('Analyse','',1,100,1);
I[29][3][1]=new Array('Kontrolle','',0,0,1);
I[29][3][2]=new Array('Programmierung','',0,0,1);
I[29][3][3]=new Array('Datensicherung','',0,0,1);
I[29][3][4]=new Array('Lizenz erwerben','',0,0,1);
I[30]=new Array();I[30][0]=100;
I[30][1]='';
I[30][2]='3';
I[30][3]=new Array();
I[30][3][0]=new Array('Integrated Services Digital Network','',1,100,1);
I[30][3][1]=new Array('International Standard Design Notebook','',0,0,1);
I[30][3][2]=new Array('Internet Service Digital Notebook','',0,0,1);
I[31]=new Array();I[31][0]=100;
I[31][1]='';
I[31][2]='3';
I[31][3]=new Array();
I[31][3][0]=new Array('Sicherung von Daten','',1,100,1);
I[31][3][1]=new Array('Surfen im Internet','',0,0,1);
I[31][3][2]=new Array('Versenden von E-Mail','',0,0,1);
I[31][3][3]=new Array('f\u00FCr Tabellenkalkulationen','',0,0,1);
I[31][3][4]=new Array('Entfernen von Viren','',0,0,1);
I[32]=new Array();I[32][0]=100;
I[32][1]='';
I[32][2]='3';
I[32][3]=new Array();
I[32][3][0]=new Array('Tabellenkalkulation','',1,100,1);
I[32][3][1]=new Array('Textverarbeitung','',1,100,1);
I[32][3][2]=new Array('Datenbanken','',1,100,1);
I[32][3][3]=new Array('Backups','',0,0,1);
I[32][3][4]=new Array('RAM','',0,0,1);
I[32][3][5]=new Array('ROM','',0,0,1);
I[32][3][6]=new Array('Betriebssysteme','',0,0,1);
I[33]=new Array();I[33][0]=100;
I[33][1]='';
I[33][2]='3';
I[33][3]=new Array();
I[33][3][0]=new Array('1 Bit','',1,100,1);
I[33][3][1]=new Array('1 Byte','',0,0,1);
I[33][3][2]=new Array('1 Pixel','',0,0,1);
I[33][3][3]=new Array('1 File','',0,0,1);
I[33][3][4]=new Array('1 Datensatz','',0,0,1);
I[34]=new Array();I[34][0]=100;
I[34][1]='';
I[34][2]='3';
I[34][3]=new Array();
I[34][3][0]=new Array('Taktfrequenz','',1,100,1);
I[34][3][1]=new Array('Zugriffszeit auf die Festplatte','',0,0,1);
I[34][3][2]=new Array('Zentraleinheit','',0,0,1);
I[34][3][3]=new Array('Bildwiederholfrequenz','',0,0,1);
I[35]=new Array();I[35][0]=100;
I[35][1]='';
I[35][2]='3';
I[35][3]=new Array();
I[35][3][0]=new Array('50 Bytes','',1,100,1);
I[35][3][1]=new Array('1 Byte','',0,0,1);
I[35][3][2]=new Array('1 MB','',0,0,1);
I[35][3][3]=new Array('50 KB','',0,0,1);
I[35][3][4]=new Array('5 KB','',0,0,1);
I[35][3][5]=new Array('1 GB','',0,0,1);
I[36]=new Array();I[36][0]=100;
I[36][1]='';
I[36][2]='3';
I[36][3]=new Array();
I[36][3][0]=new Array('ASDL','Leider, falsch!',0,0,1);
I[36][3][1]=new Array('CPU','Richtig!',1,100,1);
I[36][3][2]=new Array('MB','Leider, falsch!',0,0,1);
I[36][3][3]=new Array('GB','Leider, falsch!',0,0,1);
I[36][3][4]=new Array('GUI','Leider, falsch!',0,0,1);
I[37]=new Array();I[37][0]=100;
I[37][1]='';
I[37][2]='3';
I[37][3]=new Array();
I[37][3][0]=new Array('CD-ROM','Das ich nicht richtig!',0,0,1);
I[37][3][1]=new Array('Festplatte','Das ich nicht richtig!',0,0,1);
I[37][3][2]=new Array('ROM','Das ich nicht richtig!',0,0,1);
I[37][3][3]=new Array('RAM','Super!',1,100,1);
I[37][3][4]=new Array('DVD','Das ich nicht richtig!',0,0,1);
I[38]=new Array();I[38][0]=100;
I[38][1]='';
I[38][2]='3';
I[38][3]=new Array();
I[38][3][0]=new Array('Modem','',1,100,1);
I[38][3][1]=new Array('Browser','',1,100,1);
I[38][3][2]=new Array('Telefon- oder Kabelanschluss','',1,100,1);
I[38][3][3]=new Array('Schreibtisch','',0,0,1);
I[38][3][4]=new Array('Digitalkamera','',0,0,1);
I[38][3][5]=new Array('Telebanking','',0,0,1);
I[39]=new Array();I[39][0]=100;
I[39][1]='';
I[39][2]='3';
I[39][3]=new Array();
I[39][3][0]=new Array('Einstieg zur Bedienung eines Computers','',1,100,1);
I[39][3][1]=new Array('Arbeiten mit dem Computer wird zur Routine','',1,100,1);
I[39][3][2]=new Array('schadet der Gesundheit','',0,0,1);
I[39][3][3]=new Array('"computers\u00FCchtig" werden','',0,0,1);
I[40]=new Array();I[40][0]=100;
I[40][1]='';
I[40][2]='3';
I[40][3]=new Array();
I[40][3][0]=new Array('keine regelte Arbeitsszeit','',1,100,1);
I[40][3][1]=new Array('schwierige Organisation (Arbeit - Haushalt)','',1,100,1);
I[40][3][2]=new Array('wenig Kontakt mit Kollegen','',1,100,1);
I[40][3][3]=new Array('flexible Arbeitszeit','',0,0,1);
I[40][3][4]=new Array('keine Fahrzeit','',0,0,1);
I[41]=new Array();I[41][0]=100;
I[41][1]='';
I[41][2]='3';
I[41][3]=new Array();
I[41][3][0]=new Array('Sesselh\u00F6he passend zur Tischh\u00F6he einstellen','',1,100,1);
I[41][3][1]=new Array('Bildschirm in entsprechender H\u00F6he und Entfernung','',1,100,1);
I[41][3][2]=new Array('17\u00B4\u00B4- Bildschirm','',1,100,1);
I[41][3][3]=new Array('Strahlungsarmut','',1,100,1);
I[41][3][4]=new Array('kurzer Weg zum B\u00FCcherregal','',0,0,1);
I[41][3][5]=new Array('Sonnenlicht soll vom Bildschirm reflektiert werden','',0,0,1);
I[41][3][6]=new Array('Funkmaus einsetzen','',0,0,1);
I[42]=new Array();I[42][0]=100;
I[42][1]='';
I[42][2]='3';
I[42][3]=new Array();
I[42][3][0]=new Array('Benutzername und Passwort','Richtig!',1,100,1);
I[42][3][1]=new Array('Videobeamer','',0,0,1);
I[42][3][2]=new Array('Laptop','es muss nicht unbedingt ein Laptop sein!',0,0,1);
I[42][3][3]=new Array('CD-ROM','',0,0,1);
I[43]=new Array();I[43][0]=100;
I[43][1]='';
I[43][2]='3';
I[43][3]=new Array();
I[43][3][0]=new Array('bit','',0,0,1);
I[43][3][1]=new Array('bps','Richtig!',1,100,1);
I[43][3][2]=new Array('byte','',0,0,1);
I[43][3][3]=new Array('xls','',0,0,1);
I[43][3][4]=new Array('dot','',0,0,1);
I[44]=new Array();I[44][0]=100;
I[44][1]='';
I[44][2]='3';
I[44][3]=new Array();
I[44][3][0]=new Array('MB','Stimmt genau!',1,100,1);
I[44][3][1]=new Array('MHz','',0,0,1);
I[44][3][2]=new Array('dpi','',0,0,1);
I[44][3][3]=new Array('bps','',0,0,1);
I[45]=new Array();I[45][0]=100;
I[45][1]='';
I[45][2]='3';
I[45][3]=new Array();
I[45][3][0]=new Array('RAM','',0,0,1);
I[45][3][1]=new Array('ROM','Stimmt!',1,100,1);
I[45][3][2]=new Array('Festplatte','',0,0,1);
I[45][3][3]=new Array('DVD','',0,0,1);
I[46]=new Array();I[46][0]=100;
I[46][1]='';
I[46][2]='3';
I[46][3]=new Array();
I[46][3][0]=new Array('MB','Richtig!',1,100,1);
I[46][3][1]=new Array('GHz','',0,0,1);
I[46][3][2]=new Array('dpi','',0,0,1);
I[46][3][3]=new Array('bps','',0,0,1);
I[47]=new Array();I[47][0]=100;
I[47][1]='';
I[47][2]='3';
I[47][3]=new Array();
I[47][3][0]=new Array('Web-Browser','',0,0,1);
I[47][3][1]=new Array('Windows-Vista','Stimmt!',1,100,1);
I[47][3][2]=new Array('Textverarbeitungsprogramm','',0,0,1);
I[47][3][3]=new Array('Pr\u00E4sentationsprogramm','',0,0,1);
I[48]=new Array();I[48][0]=100;
I[48][1]='';
I[48][2]='3';
I[48][3]=new Array();
I[48][3][0]=new Array('Satellit','',0,0,1);
I[48][3][1]=new Array('Telefon','Richtig!',1,100,1);
I[48][3][2]=new Array('Stromleitung','',0,0,1);
I[48][3][3]=new Array('Touchscreen','',0,0,1);
I[48][3][4]=new Array('Funk','',0,0,1);
I[49]=new Array();I[49][0]=100;
I[49][1]='';
I[49][2]='3';
I[49][3]=new Array();
I[49][3][0]=new Array('Bits pro Sekunde','Ja!',1,100,1);
I[49][3][1]=new Array('Bytes pro Schule','',0,0,1);
I[49][3][2]=new Array('Bilder pro Sekunde','',0,0,1);
I[49][3][3]=new Array('Bilder pro Stunde','',0,0,1);


function StartUp(){
	RemoveBottomNavBarForIE();

//If there's only one question, no need for question navigation controls
	if (QsToShow < 2){
		document.getElementById('QNav').style.display = 'none';
	}
	
//Stash the instructions so they can be redisplayed
	strInstructions = document.getElementById('InstructionsDiv').innerHTML;
	

	

	PreloadImages('cmp1.jpg');

	
	CompleteEmptyFeedback();

	SetUpQuestions();
	ClearTextBoxes();
	CreateStatusArray();
	

	
//Check search string for q parameter
	if (document.location.search.length > 0){
		if (ShuffleQs == false){
			var JumpTo = parseInt(document.location.search.substring(1,document.location.search.length))-1;
			if (JumpTo <= QsToShow){
				ChangeQ(JumpTo);
			}
		}
	}
//Undocumented function added 10/12/2004
	ShowSpecialReadingForQuestion();
}

function ShowHideQuestions(){
	FuncBtnOut(document.getElementById('ShowMethodButton'));
	document.getElementById('ShowMethodButton').style.display = 'none';
	if (ShowingAllQuestions == false){
		for (var i=0; i<QArray.length; i++){
				QArray[i].style.display = '';
			}
		document.getElementById('Questions').style.listStyleType = 'decimal';
		document.getElementById('OneByOneReadout').style.display = 'none';
		document.getElementById('ShowMethodButton').innerHTML = ShowOneByOneCaption;
		ShowingAllQuestions = true;
	}
	else{
		for (var i=0; i<QArray.length; i++){
				if (i != CurrQNum){
					QArray[i].style.display = 'none';
				}
			}
		document.getElementById('Questions').style.listStyleType = 'none';
		document.getElementById('OneByOneReadout').style.display = '';
		document.getElementById('ShowMethodButton').innerHTML = ShowAllQuestionsCaption;
		ShowingAllQuestions = false;	
	}
	document.getElementById('ShowMethodButton').style.display = 'inline';
}

function CreateStatusArray(){
	var QNum, ANum;
//For each item in the item array
	for (QNum=0; QNum<I.length; QNum++){
//Check if the question still exists (hasn't been nuked by showing a random selection)
		if (document.getElementById('Q_' + QNum) != null){
			State[QNum] = new Array();
			State[QNum][0] = -1; //Score for this q; -1 shows question not done yet
			State[QNum][1] = new Array(); //answers
			for (ANum = 0; ANum<I[QNum][3].length; ANum++){
				State[QNum][1][ANum] = 0; //answer not chosen yet; when chosen, will store its position in the series of choices
			}
			State[QNum][2] = 0; //tries at this q so far
			State[QNum][3] = 0; //incrementing percent-correct values of selected answers
			State[QNum][4] = 0; //penalties incurred for hints
			State[QNum][5] = ''; //Sequence of answers chosen by number
		}
		else{
			State[QNum] = null;
		}
	}
}



function CheckMCAnswer(QNum, ANum, Btn){
//if question doesn't exist, bail
	if (State[QNum].length < 1){return;}
	
//Get the feedback
	Feedback = I[QNum][3][ANum][1];
	
//Now show feedback and bail if question already complete
	if (State[QNum][0] > -1){
//Add an extra message explaining that the question
// is finished if defined by the user
		if (strQuestionFinished.length > 0){Feedback += '<br />' + strQuestionFinished;}
//Show the feedback
		ShowMessage(Feedback);
		return;
	}
	
//Hide the button while processing
	Btn.style.display = 'none';

//Increment the number of tries
	State[QNum][2]++;
	
//Add the percent-correct value of this answer
	State[QNum][3] += I[QNum][3][ANum][3];
	
//Store the try number in the answer part of the State array, for tracking purposes
	State[QNum][1][ANum] = State[QNum][2];
	State[QNum][5] += String.fromCharCode(65+ANum) + ',';
	
//Should this answer be accepted as correct?
	if (I[QNum][3][ANum][2] < 1){
//It's wrong

//Mark the answer
		Btn.innerHTML = IncorrectIndicator;
		
//Remove any previous score unless exercise is finished (6.0.3.8+)
		if (Finished == false){
			WriteToInstructions(strInstructions);
		}	
		
//Check whether this leaves just one MC answer unselected, in which case the Q is terminated
		var RemainingAnswer = FinalAnswer(QNum);
		if (RemainingAnswer > -1){
//Behave as if the last answer had been selected, but give no credit for it
//Increment the number of tries
			State[QNum][2]++;		
		
//Calculate the score for this question
			CalculateMCQuestionScore(QNum);

//Get the overall score and add it to the feedback
			CalculateOverallScore();
			if ((ContinuousScoring == true)||(Finished == true)){
				Feedback += '<br />' + YourScoreIs + ' ' + Score + '%.';
				WriteToInstructions(YourScoreIs + ' ' + Score + '%.');
			}
		}
	}
	else{
//It's right
//Mark the answer
		Btn.innerHTML = CorrectIndicator;
				
//Calculate the score for this question
		CalculateMCQuestionScore(QNum);

//Get the overall score and add it to the feedback
		if (ContinuousScoring == true){
			CalculateOverallScore();
			if ((ContinuousScoring == true)||(Finished == true)){
				Feedback += '<br />' + YourScoreIs + ' ' + Score + '%.';
				WriteToInstructions(YourScoreIs + ' ' + Score + '%.');
			}
		}
	}
	
//Show the button again
	Btn.style.display = 'inline';
	
//Finally, show the feedback	
	ShowMessage(Feedback);
	
//Check whether all questions are now done
	CheckFinished();
}

function CalculateMCQuestionScore(QNum){
	var Tries = State[QNum][2] + State[QNum][4]; //include tries and hint penalties
	var PercentCorrect = State[QNum][3];
	var TotAns = GetTotalMCAnswers(QNum);
	var HintPenalties = State[QNum][4];
	
//Make sure it's not already complete

	if (State[QNum][0] < 0){
//Allow for Hybrids
		if (HintPenalties >= 1){
			State[QNum][0] = 0;
		}
		else{
//This line calculates the score for this question
			if (TotAns == 1){
				State[QNum][0] = 1;
			}
			else{
				State[QNum][0] = ((TotAns-((Tries*100)/State[QNum][3]))/(TotAns-1));
			}
		}
//Fix for Safari bug added for version 6.0.3.42 (negative infinity problem)
		if ((State[QNum][0] < 0)||(State[QNum][0] == Number.NEGATIVE_INFINITY)){
			State[QNum][0] = 0;
		}
	}
}

function GetTotalMCAnswers(QNum){
	var Result = 0;
	for (var ANum=0; ANum<I[QNum][3].length; ANum++){
		if (I[QNum][3][ANum][4] == 1){ //This is an MC answer
			Result++;
		}
	}
	return Result;
}

function FinalAnswer(QNum){
	var UnchosenAnswers = 0;
	var FinalAnswer = -1;
	for (var ANum=0; ANum<I[QNum][3].length; ANum++){
		if (I[QNum][3][ANum][4] == 1){ //This is an MC answer
			if (State[QNum][1][ANum] < 1){ //This answer hasn't been chosen yet
				UnchosenAnswers++;
				FinalAnswer = ANum;
			}
		}
	}
	if (UnchosenAnswers == 1){
		return FinalAnswer;
	}
	else{
		return -1;
	}
}





function CheckMultiSelAnswer(QNum){
//bail if question doesn't exist or exercise finished
	if ((State[QNum].length < 1)||(Finished == true)){return;}

//Increment the tries for this question
	State[QNum][2]++;
	
	var ShouldBeChecked;
	var Matches = 0;
	State[QNum][5] += '|';
	
//Check if there are any mismatches
	Feedback = '';
	var CheckBox = null;
	for (var ANum=0; ANum<I[QNum][3].length; ANum++){
		CheckBox = document.getElementById('Q_' + QNum + '_' + ANum + '_Chk');
		if (CheckBox.checked == true){
			State[QNum][5] += 'Y';
		}
		else{
			State[QNum][5] += 'N';
		}
		ShouldBeChecked = (I[QNum][3][ANum][2] == 1);
		if (ShouldBeChecked == CheckBox.checked){
			Matches++;
		}
		else{
			Feedback = I[QNum][3][ANum][1];
		}
	}
//Add the hit readout
	Feedback = Matches + ' / ' + I[QNum][3].length + '<br />' + Feedback;
	if (Matches == I[QNum][3].length){
//It's right
		CalculateMultiSelQuestionScore(QNum);
		if (ContinuousScoring == true){
			CalculateOverallScore();
			if ((ContinuousScoring == true)||(Finished == true)){
				Feedback += '<br />' + YourScoreIs + ' ' + Score + '%.';
				WriteToInstructions(YourScoreIs + ' ' + Score + '%.');
			}
		}
	}
	else{
//It's wrong -- Remove any previous score unless exercise is finished (6.0.3.8+)
		if (Finished == false){
			WriteToInstructions(strInstructions);
		}	
	}
		
//Show the feedback
	ShowMessage(Feedback);
	
//Check whether all questions are now done
	CheckFinished();
}

function CalculateMultiSelQuestionScore(QNum){
	var Tries = State[QNum][2];
	var TotAns = State[QNum][1].length;
	
//Make sure it's not already complete
	if (State[QNum][0] < 0){
		State[QNum][0] = (TotAns - (Tries-1)) / TotAns;
		if (State[QNum][0] < 0){
			State[QNum][0] = 0;
		}
	}
}



function CalculateOverallScore(){
	var TotalWeighting = 0;
	var TotalScore = 0;
	
	for (var QNum=0; QNum<State.length; QNum++){
		if (State[QNum] != null){
			if (State[QNum][0] > -1){
				TotalWeighting += I[QNum][0];
				TotalScore += (I[QNum][0] * State[QNum][0]);
			}
		}
	}
	if (TotalWeighting > 0){
		Score = Math.floor((TotalScore/TotalWeighting)*100);
	}
	else{
//if TotalWeighting is 0, no questions so far have any value, so 
//no penalty should be shown.
		Score = 100; 
	}
}

function CheckFinished(){
	var FB = '';
	var AllDone = true;
	for (var QNum=0; QNum<State.length; QNum++){
		if (State[QNum] != null){
			if (State[QNum][0] < 0){
				AllDone = false;
			}
		}
	}
	if (AllDone == true){
	
//Report final score and submit if necessary
		CalculateOverallScore();
		FB = YourScoreIs + ' ' + Score + '%.';
		if (ShowCorrectFirstTime == true){
			var CFT = 0;
			for (QNum=0; QNum<State.length; QNum++){
				if (State[QNum] != null){
					if (State[QNum][0] >= 1){
						CFT++;
					}
				}
			}
			FB += '<br />' + CorrectFirstTime + ' ' + CFT + '/' + QsToShow;
		}
		WriteToInstructions(FB);
		
		Finished == true;

		TimeOver = true;
		Locked = true;
		


		Finished = true;
		Detail = '<?xml version="1.0"?><hpnetresult><fields>';
		for (QNum=0; QNum<State.length; QNum++){
			if (State[QNum] != null){
				if (State[QNum][5].length > 0){
					Detail += '<field><fieldname>Question #' + (QNum+1) + '</fieldname><fieldtype>question-tracking</fieldtype><fieldlabel>Q ' + (QNum+1) + '</fieldlabel><fieldlabelid>QuestionTrackingField</fieldlabelid><fielddata>' + State[QNum][5] + '</fielddata></field>';
				}
			}
		}
		Detail += '</fields></hpnetresult>';
		setTimeout('Finish()', SubmissionTimeout);
	}
}










//-->

//]]>


