";
theSource += "";
theSource += "YOU WIN!!!
";
theSource += "
";
document.myForm.txtGuess.value = "";
} else {
alert("there are " + numPetals + " petals around the rose.");
numPetals = 0;
document.myForm.txtGuess.value = "";
theSource += "";
theSource += "";
theSource += "";
theSource += "
";
for (i = 1; i <= 5; i++){
roll = Math.floor(Math.random() * 6) + 1;
switch (roll){
case 1:
theSource += "
";
break;
case 2:
theSource += "
";
break;
case 3:
theSource += "
";
numPetals += 2;
break;
case 4:
theSource += "
";
break;
case 5:
theSource += "
";
numPetals += 4;
break;
case 6:
theSource += "
";
break;
default :
theSource += "ERROR!!";
} // end switch
} // end loop
} // end if
var theDoc = window.parent.output.document
theDoc.open();
theDoc.write(theSource);
theDoc.close();
}//close rollEm()
function helpScreen(){
// pop up a new window with a help screen in it
//requires petalHelp.html
var helpWindow = window.open("petalHelp.html", "pHelp",
"height=450,width=450");
helpWindow.focus();
} // end helpScreen
Petals around the rose