function MM_jumpMenuGo(objId,targ,restore){ //v9.0
	var selObj = null;  
	with (document) { 
	if (getElementById) selObj = getElementById(objId);
	if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0; }
	}
	
	
	/*
	html code for quick links
	----------------------------------------------------------------------------

      <select name="jumpMenu1" id="jumpMenu1">
        <option value="" selected="selected">Who we are One</option>
        <option value="http://www.sfgov.org/site/planning_index.asp?id=24736#hell">&gt;Find out about my permit status?</option>

        <option value="http://www.sfgov.org/site/planning_index.asp?id=24736#complain">&gt; Complain about an illegal use?</option>
      </select>
      <img src="ftp/_gfx/spacer.gif" alt="" height="10" width="10">
      <input name="go_button1" id="go_button1" value="Go" onclick="MM_jumpMenuGo('jumpMenu1','parent',1)" type="button">

	*/