<!-- Hide script from older browsers

	var type = "IE";	//Variable used to hold the browser name
	BrowserSniffer();
	
	//detects the capabilities of the browser
	function BrowserSniffer() {

	   	//Opera
	   	if (navigator.userAgent.indexOf("Opera")!=-1 && document.getElementById) type="OP";
	   	//Internet Explorer e.g. IE4 upwards
	   	else if (document.all) type="IE";
	   	//Netscape Communicator 4												
	   	else if (document.layers) type="NN";
	   	//Mozila e.g. Netscape 6 upwards
	   	else if (!document.all && document.getElementById) type="MO";
		//I assume it will not get here
	   	else type = "IE";
	}

	//Creates correct browser dom
	function whatBrows(id) {

		if (type=="IE") {
			docObj = "document.all."
			styleObj = ".style"
			current_element = eval(docObj + id + styleObj)
		}

		if (type=="NN") {
			docObj = "document.all."
			styleObj = ""
			current_element = eval(docObj + id + styleObj)
		}

		if ((type=="MO") || (type=="OP")) {
			docObj = "document.getElementById('" + id + "')"
			styleObj = ".style"
			current_element = eval(docObj + styleObj)

		}
		
		return current_element;
	}


	//if (type=="IE") document.all[id].style.backgroundColor=color;
	//if (type=="NN") document.layer['id'].bgColor=color;
	//if (type=="MO" || type=="OP") document.getElementById[id].style.backgroundColor=color;

		
	var count = 0;
	var objVis = false;
	var lastElem;
	
	function popUp(evt,currElem) {
	//popUpWin = eval(docObj + currElem + styleObj)
	  popUpWin = whatBrows(currElem)

	   if (currElem == "popUp1") {
	    var xsize = 190
	   } 
	   
	    if (count > 0) {
		//popDownWin = eval(docObj + lastElem + styleObj)
		popDownWin = whatBrows(lastElem)
		popDownWin.visibility = "hidden"
		}
		
		if (document.all) {
			popUpWin.top = 102
			popUpWin.left = xsize
		}
		else {
			popUpWin.top = 102
			popUpWin.left = xsize
		}
		popUpWin.visibility = "visible"
		window.status = ""
		count = 1;
		lastElem = currElem;
		objVis = true;
	}
	
	function popDown(currElem) {
		//popUpWin = eval(docObj + currElem + styleObj)
		popUpWin = whatBrows(currElem)
		popUpWin.visibility = "hidden"
		objVis = false;
	}

	function hideAll() {
		if (objVis == true) {
			popDown(lastElem);
		}
		return true;
	}
// End hiding script -->
