Okay but first have a look at this, it's working fine on my machine, I assume this is called by each of the intro_q? pages:
Code:
function goNext() {
var currPage, i
for(i = 0; i < quiz.length; i++) // was i<(quiz.length-1);
{
//alert(top.frames["main"].location.href + "\n" + quiz[i].src);
if (top.frames["main"].location.href.indexOf(quiz[i].src) != -1)
{
if(i + 1 == quiz.length){
top.frames["main"].location.href = "myMenuPage.htm";
}else{
top.frames["main"].location.href = quiz[i+1].src;
}
break
}
}
}
--
Joe