var counter=0; var sitenum=1;// for every site you add, add one to this number var sites=new Array() sites[0]="www.frosty.co.uk" sites[1]="www.frostbyte.co.uk" // all you have to do is add add sites[3] sites[4] so on and so on! //DO NOT EDIT BELOW THIS LINE!!!!! //----------------------------------------------------------------------------------------------------------------------------- function getback() { if (counter==0) { alert('This is the first Site!!'); } else { counter=counter-1 window.open("http://"+sites[counter]+"") } } function getnext() { if (counter+1>sitenum) { counter=0; window.open("http://"+sites[counter]+"") } else { counter=counter+1 window.open("http://"+sites[counter]+"") } } function getrand() { var newdate=new Date() counter=(newdate.getSeconds())%3 window.open("http://"+sites[counter]+"") }