browserName = navigator.appName; 
browserVer = parseInt(navigator.appVersion);  
if (browserName == "Netscape" && browserVer >= 3) { browserCheck = "ok"; }  
else {       
if (browserName == "Microsoft Internet Explorer" && browserVer >= 3) 
{ browserCheck = "ok"; }      
else { browserCheck = "bad"; }  
}  
if (browserCheck == "ok") 
{   
b0a = new Image(); b0a.src = "arrow1.gif";
b0b = new Image(); b0b.src = "arrow1a.gif";
b1a = new Image(); b1a.src = "arrow1.gif";
b1b = new Image(); b1b.src = "arrow1a.gif";
b2a = new Image(); b2a.src = "arrow1.gif";
b2b = new Image(); b2b.src = "arrow1a.gif";
b3a = new Image(); b3a.src = "arrow1.gif";
b3b = new Image(); b3b.src = "arrow1a.gif";
b4a = new Image(); b4a.src = "arrow1.gif";
b4b = new Image(); b4b.src = "arrow1a.gif";
b5a = new Image(); b5a.src = "arrow1.gif";
b5b = new Image(); b5b.src = "arrow1a.gif";
b6a = new Image(); b6a.src = "arrow1.gif";
b6b = new Image(); b6b.src = "arrow1a.gif";
b7a = new Image(); b7a.src = "arrow1.gif";
b7b = new Image(); b7b.src = "arrow1a.gif";
b8a = new Image(); b8a.src = "arrow1.gif";
b8b = new Image(); b8b.src = "arrow1a.gif";
b9a = new Image(); b9a.src = "arrow1.gif";
b9b = new Image(); b9b.src = "arrow1a.gif";
b10a = new Image(); b10a.src = "arrow1.gif";
b10b = new Image(); b10b.src = "arrow1a.gif";
b11a = new Image(); b11a.src = "arrow1.gif";
b11b = new Image(); b11b.src = "arrow1a.gif";
b12a = new Image(); b12a.src = "arrow1.gif";
b12b = new Image(); b12b.src = "arrow1a.gif";
b13a = new Image(); b13a.src = "arrow1.gif";
b13b = new Image(); b13b.src = "arrow1a.gif";
b14a = new Image(); b14a.src = "arrow1.gif";
b14b = new Image(); b14b.src = "arrow1a.gif";
b15a = new Image(); b15a.src = "arrow1.gif";
b15b = new Image(); b15b.src = "arrow1a.gif";
b16a = new Image(); b16a.src = "arrow1.gif";
b16b = new Image(); b16b.src = "arrow1a.gif";
b17a = new Image(); b17a.src = "arrow1.gif";
b17b = new Image(); b17b.src = "arrow1a.gif";
b18a = new Image(); b18a.src = "arrow1.gif";
b18b = new Image(); b18b.src = "arrow1a.gif";
b19a = new Image(); b19a.src = "arrow1.gif";
b19b = new Image(); b19b.src = "arrow1a.gif";
b20a = new Image(); b20a.src = "arrow1.gif";
b20b = new Image(); b20b.src = "arrow1a.gif";
b21a = new Image(); b21a.src = "arrow1.gif";
b21b = new Image(); b21b.src = "arrow1a.gif";
b22a = new Image(); b22a.src = "arrow1.gif";
b22b = new Image(); b22b.src = "arrow1a.gif";
b23a = new Image(); b23a.src = "arrow1.gif";
b23b = new Image(); b23b.src = "arrow1a.gif";
b24a = new Image(); b24a.src = "arrow1.gif";
b24b = new Image(); b24b.src = "arrow1a.gif";
b25a = new Image(); b25a.src = "arrow1.gif";
b25b = new Image(); b25b.src = "arrow1a.gif";
b26a = new Image(); b26a.src = "arrow1.gif";
b26b = new Image(); b26b.src = "arrow1a.gif";


}  
function imgswap( Iname1, Iname2) 
{ 
if (browserCheck == "ok") 
{ 
document [Iname1].src = eval(Iname2 + ".src"); } }    



function Zoom(theImage,theTitle,x,y) 
{     
var x1 = x + 24     
var y1 = y + 80 	
var newWindow = null         
newWindow = window.open("","","width="+x1+",height="+y1+",scrollbars=no,resizable=yes")   	
if (newWindow !=null) 
{ 		
newWindow.focus() 		
var newimage = "<HTML><link rel='stylesheet' type='text/css' HREF='wildchal.css'><HEAD><TITLE>" +theTitle+ "</TITLE></HEAD>" 		
newimage += "<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 CLASS='popup'><FORM><DIV align=\"center\"><IMG SRC=" +theImage+ " WIDTH=" +x+ " HEIGHT=" +y+ " BORDER=0 VSPACE=10 CLASS='popup'><BR>" 		
newimage += "<FONT CLASS='popup'><B>" +theTitle+ "</B></FONT><BR>" 		
newimage += "<IMG SRC='space.gif' WIDTH=1 HEIGHT=10><BR>" 		
newimage += "<INPUT TYPE='button' CLASS='popup' VALUE='Close This Window' onClick='javascript:window.close()'></FORM></DIV>" 		
newimage += "</BODY></HTML>" 		
newWindow.document.write(newimage) 		
newWindow.document.close() 	} } 

function openlink(linkurl) {
newwin = window.open(linkurl,"windowname",",,scrollbars,resizable,status,toolbar,menubar,location")
}


function param_parseURL() {
/* Converts the current URL to a parameter string, and returns it. */
	var paramList = self.location.href.substring(self.location.href.indexOf("?", 1) + 1, self.location.href.length);
	var loop = 0;
	var finished = false;
	var tempParamList = "";
	tempParamList = unescape(paramList);
	tempParamList += "&";
	return(tempParamList);
}

function param_getParam(paramList, name) {
/* Returns a single parameter 'name' given a parameter string 'paramList'. */
	var counter = 0;
	var paramName = new Array();
	var paramValue = new Array();
	paramName[counter] = paramList.substring(0, paramList.indexOf("="));
	paramValue[counter] = paramList.substring(paramList.indexOf("=") + 1, paramList.indexOf("&"));
	counter++;
	for (loop = 0; loop < paramList.length - 1; loop++) {
	if (paramList.substring(loop, loop+1) == "&") {
			paramName[counter] = paramList.substring(loop + 1, paramList.indexOf("=", loop));
			paramValue[counter] = paramList.substring(paramList.indexOf("=", loop) + 1, paramList.indexOf("&", loop + 1));
			counter++;
		}
	}
	var valueFound = false;
	for (loop2 = 0; loop2 < counter; loop2++) {
		if (paramName[loop2] == name) {
			return(paramValue[loop2]);
			valueFound = true;
		}
	}
	if (valueFound == false) {
		return("");
	}
}

