';
function GoBack(){
var BackSkip = history.length - PreviousPage;
if (BackSkip > 0){
history.go((BackSkip+1)*-1);
}
else{
parent.history.back();
}
}
function ReduceItems(){
var ItemToDump=0;
var j=0;
while (I.length > QsToShow){
ItemToDump = Math.floor(I.length*Math.random());
for (j=ItemToDump; j<(I.length-1); j++){
I[j] = I[j+1];
}
I.length = I.length-1;
}
}
function Shuffle(InArray){
Temp = new Array();
var Len = InArray.length;
var j = Len;
for (var i=0; i';
OutString += '
';
//First, create the Q number readout at the top
if (GlobalQNum!=null)
{
var Readout = ' Question '+(GlobalQNum+1) + ' of ' + I.length+' ';
while (Readout.length < 7)
Readout = ' ' + Readout + ' ';
Readout = QButtonsOpener + Readout + QButtonsCloser;
OutString+=Readout;
}
if (Feedback.length>0){
OutString += '