Topic: Adding a simple search

I have added a simple search to the header of my theme but I want it so that the search result basically search just the topics for the results. Here is my code below. Maybe someone call tell me what I need to add.

    <div id="searchbox">
      <form id="search2" method="get" action="search.php" style="margin: 0pt;">
        <p>
        <a href="search.php">
        <img src="../../img/search.gif" style="margin: 0pt 1ex;" alt align="middle" width="16" height="25" /></a>
        <input name="search"  value="Search..." onfocus="this.value = '';" onblur="if(this.value=='') this.value='Search...';" style="width: 170px;" type="text" size="20" />
        </p>
      </form>
    </div>

Thanks for the help
Bingiman

Re: Adding a simple search

why not put a simple google search engine on ur site?
and have the results display in your site?
http://www.google.com/coop/cse/

example: http://modelcrowd.com
Q

My stuff or my style might sux, but atleast I'm willing to help when I can.
Don't be stupid and help ! We are the stupid one's !!!

Re: Adding a simple search

I actually figured it out.

    <div id="searchbox">
      <form id="search2" method="get" action="search.php" style="margin: 0pt;">
        <p>
        <a href="search.php">
        <img src="../../img/search.gif" style="margin: 0pt 1ex;" alt align="middle" width="16" height="25" /></a>
        <input type="hidden" name="action" value="search" /><input type="hidden" name="show_as" value="topics" /><input type="text" name="keywords" maxlength="100" onfocus="this.value="" " value="Search..."/>
        </p>
      </form>
    </div>