<html>
<head><title>Reload</title>
<SCRIPT LANGUAGE="JavaScript1.2" type="text/javascript"><!--
function reload(){
var strI=document.stored.Arrayvalue.value;
var str = new Array(20);
// insert target URLs between quote marks in array items below.
// To add or remove the total number items in the array, add
// lines to or remove lines from the array below and
// modify the number in "Array()" above and "strI" below to
// be one greater than the last "str[]" value below.
str[1] = "";
str[2] = "";
str[3] = "";
str[4] = "";
str[5] = "";
str[6] = "";
str[7] = "";
str[8] = "";
str[9] = "";
str[10] = "";
str[11] = "";
str[12] = "";
str[13] = "";
str[14] = "";
str[15] = "";
str[16] = "";
str[17] = "";
str[18] = "";
str[19] = "";
if( strI==20){
strI=1;
}
else{
URL=str[strI];
window.open(URL,'EC');
strI++;
}
document.stored.Arrayvalue.value= strI;
var intNumber=Math.round(Math.random()*45000);
if(intNumber<5000){intNumber=intNumber+5000;}
setTimeout("reload()",intNumber);
}
//-->
</script>
</head><body onload="reload();">
<form name="stored"><input type="Text" name="Arrayvalue" value="1"></form>
</body></html>