<html>
<head>
<title>Count By Five</title>
<script>
//CountByFive
// Chao Li. October 23, 2007.
//demonstrates how to vary the for loop
var i = 0;
for (i=5; i <= 100; i += 5)
{
alert (i);
}// end for loop
</script>
</head>
<body>
<center><center>
<h1>Count By Five<br></h1>
</center>
<hr>
</body>
</html>