
<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var time = 30
function remind() {
this.focus()
var real = time * 1000
setTimeout("remind()",real)
}
remind();
//-->
</script>