Please send questions to st10@humboldt.edu .
<html>

<!-- 
     js_while1.html
     Playing with a JavaScript while statement
     
     by: Sharon Tuttle
     last modified: 8-27-06
-->

<head>
    <title> js_while1.html: Playing with a JavaScript while statement </title>
</head>

<body>
    <h3> js_while1.html </h3>
    <h4> (last modified 8-27-06) </h4>

    <hr>

    <script type="text/javascript">
        <!--
	var reply = false

        while (reply != true)
        {
            reply = confirm("Are you ready to stop?")
        }
        //-->
    </script>
    <noscript> 
        <hr> 
        <h3> Your browser does not support JavaScript, or has it disabled; <br> 
             please note that, as a result, this page will not work. </h3> 
        <hr> 
    </noscript> 

    <h1> FINISHED! </h1>

    <hr>

</body>
</html>