I want one text box, with two buttons too perform two different actions.
When i press one button i want it to search the site, and the other button to search google
Here is a visual of what i want.

This is what i have now.....
CODE
<form action="search.php" method="post">
<input class="search" onblur="if (value==''){value='Search DDLoogle';}" onfocus="if (value == 'Search DDLoogle') {value='';}" size="60" type="text"
name="q" />
<br><input class="button" type="submit" value= "DDLoogle Search" name="submit" size="12" />
</form>
<input class="search" onblur="if (value==''){value='Search DDLoogle';}" onfocus="if (value == 'Search DDLoogle') {value='';}" size="60" type="text"
name="q" />
<br><input class="button" type="submit" value= "DDLoogle Search" name="submit" size="12" />
</form>