<!--
var time = 0.001; // time in secs - thi sis how long the window will stay under
function remind() {
this.focus();
var real = time * 1000;
setTimeout("remind()",real);
} 
remind();
//
// -->

