<!---
/* by Peter Frost for Bristol PC Services 05 Jul 2006 */
var count = 1
function setDelay() {
 count=1
 newPic()
}
function wait() {
 stime=document.delay.stime.value
 if (isNaN(parseInt(stime))) {stime=1}
 if (stime<1) stime=1
 work=1000 * stime
 setTimeout("newPic(count)",work)
}
function newPic() {
 document.images["0"].src="timeout\\"+count+".gif"
 document.images["1"].width=count
 count+=1
 if (count<241) {wait()} else {reload()}
}
function reload() {
 self.focus()
 window.location.reload()
}
newPic()
//--->