<html>
<head>
<title>Racer</title>
<script>
//Racer
//Chao Li. October 10, 2007.
//Demonstrates the basic for loop
var lap = 0;
for (lap = 1; lap <= 10; lap++)
{
alert ("Now on lap: " + lap);
}// end for loop
</script>
</head>
<body>
<center><center>
<h1>Racer<br></h1>
</center>
<hr>
</body>
</html>