I have converted a textbox search to Google Search using :
location.href = "http://images.google.com/search?q=" + val;
But, I want options of Web Search, Image Search, Local Search & News Search.
I do have :
<tr height="40">
<td width="80%" align="center" ><input id="searchText" type="text" size="100"/></td>
<td class="searchbox" width="20%" align="center"><a href="#" onclick="startSearch()">Search</a></td>
<td width="0%"></td>
</tr>
<td align="center">
<input type="radio" name="searchType" value="true"/> Web
<input type="radio" name="searchType" value="false"/> Image
<input type="radio" name="searchType" value="false"/> News
<input type="radio" name="searchType" value="false"/> Local
</td>
How do I filter this optiong using the same above link.