Need Help with web code

northmendo.com

northmendo
this code is used to make a search button on a page I cant get this to work

here is the code

<form method="get" target="_NEW" action="http://maps.google.com/">
<input style="width:120px;" type="text" name="p" />
<input style="width:100px;" type="submit" value="Google Maps" />
</form>

thanks for the help
 
This should work:

<form method="get" target="_NEW" action="http://maps.google.com/maps">
<input style="width:120px;" type="text" name="q" />
<input style="width:100px;" type="submit" value="Google Maps" />
</form>
 
Back
Top