function GetRandomURL()
{


var locationlist = new URLList (


"http://www.krackdown.com/No/E.html",
"http://www.pixeljam.com/No/E.html",
"http://www.exonemo.com/No/E.html",
"http://www.final.org/NO/E.html",
"http://www.mashica.com/No/E.html",
"http://www.jimpunk.com/No/E.html",
"http://www.marioland.de/No/E.html",

"http://www.d2b.org/No/E.html",

"http://www.halfempty.com/No/E.html",

"http://www.space-invaders.com/NO/E.html",
"http://www.e13.com/No/E.html",
"http://www.ctrlaltdel.org/No/E.html",
"http://www.day-dream.com/No/E.html", 
"http://www.fiftyfifty.org/No/E.html",
"http://www.hell.com/NO/E.html",
"http://www.potatoland.org/No/E.html",


"http://www.friendchip.com/No/E.html",

"http://www.friendchip.com/No/E.html",


"http://www.6168.org/no/E.html",


"http://www.redsmoke.com/No/E.html",
"http://www.superbad.com/No/E.html",
"http://aleph-arts.org/No/E.html",



"http://www.internet.com.uy/vibri/No/E.html",
"http://www.metaphsk.com/No/E.html",
"http://www.haluska.sk/No/E.html",

"http://www.unosunosyunosceros.com/Si/E01.html",
"http://www.unosunosyunosceros.com/Si/E02.html",
"http://www.unosunosyunosceros.com/Si/E03.html",
"http://www.unosunosyunosceros.com/Si/E04.html",
"http://www.unosunosyunosceros.com/Si/E05.html",
"http://www.unosunosyunosceros.com/Si/E06.html",
"http://www.unosunosyunosceros.com/Si/E07.html",
"http://www.unosunosyunosceros.com/Si/E08.html"




);

        num = Math.round ( ( rand.next() * (locationlist.count-1)) );


        location.href = locationlist.list[num];
}

function URLList ()
{
        var argv = URLList.arguments;
        var argc = argv.length;
        this.list = new Object();
        for (var i = 0; i < argc; i++)
        this.list[i] = argv[i];
        this.count = argc;
        return this;
}


function NextRandomNumber()
{
        var hi   = this.seed / this.Q;
        var lo   = this.seed % this.Q;
        var test = this.A * lo - this.R * hi;
        if (test > 0)
                this.seed = test;
        else
                this.seed = test + this.M;
        return (this.seed * this.oneOverM);
}

function RandomNumberGenerator() 
{
        var d = new Date();
        this.seed = 2345678901 +
        (d.getSeconds() * 0xFFFFFF) +
        (d.getMinutes() * 0xFFFF);
        this.A = 48271;
        this.M = 2147483647;
        this.Q = this.M / this.A;
        this.R = this.M % this.A;
        this.oneOverM = 1.0 / this.M;
        this.next = NextRandomNumber;
        return this;
}

var rand = new RandomNumberGenerator();




