<!-- Beginning of JavaScript -------- 
/*  
	GetRandomURL 
	Written by Jerry Aman, Optima System, May 19, 1996. Part of the PageSpinner distribution. 
	We will not be held responsible for any unwanted effects due to the usage of this script or any derivative. 
	No warrantees for usability for any specific application are given or implied. 
	You are free to use and modify this script, if credits are kept in the source code 
*/ 
 
function GetRandomURL() 
{ 
	// Put relative or full URL's in the strings below 
	// You can increase the number of URL's to more than 5 by adding a 
	// string containing an URL in list below 
 
var locationlist = new URLList ( 
	"ansuz.html", 
	"ansuz-r.html", 
	"berkano.html", 
	"berkano-r.html", 
	"dagaz.html", 
	"dagaz-r.html", 
	"ehwaz.html", 
	"ehwaz-r.html", 
	"eihwaz.html", 
	"eihwaz-r.html", 
	"elhaz.html", 
	"elhaz-r.html", 
	"fehu.html", 
	"fehu-r.html", 
	"gebo.html", 
	"gebo-r.html", 
	"hagalaz.html", 
	"hagalaz-r.html", 
	"ingwaz.html", 
	"ingwaz-r.html", 
	"isa.html", 
	"isa-r.html", 
	"jera.html", 
	"jera-r.html", 
	"kenaz.html", 
	"kenaz-r.html", 
	"laguz.html", 
	"laguz-r.html", 
	"mannaz.html", 
	"mannaz-r.html", 
	"naudhiz.html", 
	"naudhiz-r.html", 
	"othalaz.html", 
	"othalaz-r.html", 
	"perthro.html", 
	"perthro-r.html", 
	"raidho.html", 
	"raidho-r.html", 
	"sowilo.html", 
	"sowilo-r.html", 
	"thurisaz.html", 
	"thurisaz-r.html", 
	"tiwaz.html", 
	"tiwaz-r.html", 
	"uruz.html", 
	"uruz-r.html", 
	"wunjo.html", 
	"wunjo-r.html", 
	"wyrd.html" 
); 
 
	num = Math.round ( ( rand.next() * (locationlist.count-1)) ); 
 
	return 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; 
} 
 
//********************************************* 
// Park-Miller Pseudo-Random Number Generator 
// JavaScript implementation by David N. Smith 
// of IBM's T J Watson Research Center 
//********************************************* 
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(); 
 
// -- End of JavaScript code -------------- --> 