function formHandler(fieldName){
	window.location.href = document.getElementById(fieldName).value;
}

function openWindow(url,title,attributes){
	window.open(url,title,attributes);
}

function getTip(txt, mapid) {
	document.getElementById(mapid).innerHTML = txt;
}

function resetTip(mapid) {
	document.getElementById(mapid).innerHTML = '&nbsp;';
}

function resetTipImg(eid, src) {
	document.getElementById(eid).innerHTML = "<img width='300' src='" + src + "' alt='Brewster County'>";
}