
	function formHandler2(form){
		if(form.options[form.selectedIndex].value != "")
			window.location.href = form.options[form.selectedIndex].value;
		}


	function display(url) {
		var isIE = document.all != null;
		var winHeight = isIE ? 430 : 420;
		mediumWin = window.open(url, 'display','status=0,toolbar=0,directories=0,menubar=1,location=0,resizable=0,scrollbars=yes,width=620,height=' + winHeight);
		mediumWin.focus();
		}


	function viewmap(url) {
		mediumWin = window.open(url, 'display','status=0,toolbar=0,directories=0,menubar=1,location=0,resizable=0,scrollbars=no,width=620,height=420');
		mediumWin.focus();
		}


	// Handles rollover images for NN3+ and IE4+
	var loaded = new Array();
	
	function F_RO(image,imageName) {
		if (image && image.src &&
			(null == image.out || typeof(image.out) == typeof(void(0)))) {
			s = image.src;
			image.out = new Image();
			image.out.src = s;
			image.over = new Image();
			if (imageName.lastIndexOf('/') >= 0 || imageName.lastIndexOf('\\') >= 0) {
				s = imageName;
			} else {
				i = s.lastIndexOf('/');
				if (i<0) i = s.lastIndexOf('\\');
				if (i<0) { s = imageName; }
				else	 { s = s.substring(0,i+1) + imageName; }
			}
			image.over.src = s;
			loaded[image.name] = image;
		}
	}
	function F_roll(imageName,over) {
		if (document.images) {
		if (over) { imageObject = "over"; }
		else	  { imageObject = "out"; }
		image = loaded[imageName];
		if (image) {
			ref = eval("image."+imageObject);
			if (ref) image.src = eval("image."+imageObject+".src");
		}
		if (window.event)
			window.event.cancelBubble = true;
		}
	}