<!-- Hide from old browsers
function handleResize() {
	location.reload()
	return false
	}
if (isNS4) {
	window.captureEvents(Event.RESIZE)
	window.onresize = handleResize
}

function popUp(evt,currElem){
	// checks to see if this is a DHTML browser 
	// and that currElem is not set to 0 in which case 
	// this was triggered by the HREF and can not be treated as an event
	if ((isNS4 && currElem != 0) || (isIE4 && currElem != 0)){
		dom = eval(docObj +  '.' + currElem + styleObj);
		state = dom.visibility;
		if (state == "visible" || state == "show")
			{dom.visibility = "hidden";}
			else 
			// finds the position of the mouse 
			// and then offsets the coordinates slightly
				{
			if (isNS4) {
				topVal = eval(evt.pageY + 2);
				leftVal = eval(evt.pageX - 125);}
			if (isIE4) {
				topVal = eval(event.y + 2);
				leftVal = eval(event.x - 125);}
			// keeps the element from going off screen to the left
			if(leftVal < 2) {leftVal = 2;}	
			dom.top = topVal;
			dom.left = leftVal;
			dom.visibility = "visible";
				}
	}
}
// Stop hiding from old browsers -->
