Well, it's easy. You use a JavaScript that refreshed your page and put in a little testing code.
I would set this onLoad:
Code:
var testReloadDone=false;
Then, in your refresh:
Code:
...
if(!testReloadDone){
// do refresh
testReloadDone=true;
}
Enough hints?
