// DETECT BROWSER

java3		= "false";
browserVer	= parseInt(navigator.appVersion);
browserName 	= navigator.appName; 

if (browserName == "Netscape" && browserVer >= 3 || browserName == "Microsoft Internet Explorer" && browserVer >= 4) {
	java3 = "true";
}

function mouseOverDouble(No, Name, Flipover){
  if (java3 == "true"){
	  if (No == 2){
		document [Name].src = eval(Name + "a" + No + ".src");
		document [Flipover].src = eval(Name + "b" + ".src");
	  }else{
		document [Name].src = eval(Name + "a" + No + ".src");
		document [Flipover].src = eval(Flipover + ".src");
	  }

	  txt = eval(Name + 'txt');

	  if (window.status == txt){
		window.status = "";
	  }else{
		window.status = txt;  
	  }
  }
}

function go(theForm, theValue){
	if (theValue != 'null'){
		document [theForm].mode.value = theValue;
	}

	document [theForm].submit();
}

function checkValue(theValue, theField){
}
