browserName = navigator.appName;
browserVersion = parseInt(navigator.appVersion);
   if (browserName == "Netscape" && browserVersion >= 3) version = "nav3";
   else if (browserName == "Microsoft Internet Explorer" && browserVersion >= 4) version = "nav3";
   else version= "nav2";

// Fill an array of images for the random image selection
if (version == "nav3") {
	imageList = new Array();
	var i = 0;
// put the images here, don't forget to use ' instead of "
	imageList[i++] = "<IMG SRC='splash/wl01.jpg' + WIDTH='272' HEIGHT=368' BORDER='0'>";
	imageList[i++] = "<IMG SRC='splash/wl02.jpg' + WIDTH='272' HEIGHT='368' BORDER='0'>";
	imageList[i++] = "<IMG SRC='splash/wl03.jpg' + WIDTH='272' HEIGHT='368' BORDER='0'>";

// Generate some random numbers
	var rand = Math.round(Math.random() * (imageList.length - 1));
}