
function submit_search(){
	frm  = document['frm_panel_search'];
	kw   = frm['keyword'].value;
	type = frm['type'].options[frm['type'].selectedIndex].value;
	if(!type){
		alert('Please select which type of listing to search for: businesses or equipment.');
		return false;
	}
	frm.action = '/' + type + '/index.php?keyword=' + kw;
	return true;
}


function glossary(sSubject) {
	window.open("/glossary.php?dir=/#" + sSubject, "help", "target=_blank,width=320,height=160,toolbar=0,directories=0,menubar=0,status=0,resizable=1,location=0,scrollbars=yes,copyhistory=0");
}


function MM_jumpMenu(targ,selObj,restore){ //took off of map page only...
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}