<script>
var timeLeft = 10
function startTimer(){
timeLeft --
if (timeLeft < 0) {
document.location = "nextPage.htm"
}
minsLeft = Math.floor(timeLeft / 60)
secsLeft = timeLeft - (minsLeft * 60)
if (secsLeft < 10){
secsLeft = "0" + secsLeft
}
window.status = minsLeft + ":" + secsLeft
timerID = setTimeout("startTimer()",1000)
}
</script>
<body onLoad="startTimer()">
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook