<html>
<head>
<title>Test</title>
</head>
<body>
<script type="text/javascript">
<!--
document.write("<br>Beginn do-while-Schleife");
var x = 10;
do 
{
   document.write("<br>x * x = " + (x * x));
   x = x + 1;
}
while(x < 10);
document.write("<br>Ende do-while-Schleife");


document.write("<br><br>Beginn while-Schleife");
var y = 10;
while(y < 10) 
{
   document.write("<br>y * y = " + (y * y));
   y = y + 1;
}
document.write("<br>Ende while-Schleife");

// -->
</script>
</body>
</html>