An Index without any enhancements looks like this.
and is created with this HTML
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><html>
<head><meta http-equiv="Content-Type"content="text/html; charset=iso-8859-15">
<meta name="GENERATOR" content="bbk bbkRC V1">
JAVA Refresh code, preceded by code to prevent caching <META HTTP-EQUIV="Expires" CONTENT="Tue, 01 Jan 1980 1:00:00 GMT">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<script>
<!--
//enter refresh time in "minutes:seconds" Minutes should range from 0 to
//inifinity. Seconds should range from 0 to 59
var limit="5:0"
if (document.images){
var parselimit=limit.split(":"); parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds until results update!"; else
curtime=cursec+" seconds until results update!"; window.status=curtime
setTimeout("beginrefresh()",1000)
}
}