Hiya,
I seem to recall that there was a snippet of code that would allow you to search using specific search engines.

I have a tabbed menu when you hover over it it will change the search engine you will be using, however I dont know how to search other search engines (other than google)

What I am doing: (or what am I doing?)
Code:
<div id="ddimagetabs" class="halfmoon">
<ul>
<li class="selected"><a href="#" onMouseover="expandcontent('sc1', this)">Google</a></li>
<li><a href="#" onMouseover="expandcontent('sc2', this)">MSN</a></li>
<li><a href="#" onMouseover="expandcontent('sc3', this)">Yahoo</a></li>
<li><a href="#" onMouseover="expandcontent('sc4', this)">Alta Vista</a></li>
<li><a href="#" onMouseover="expandcontent('sc4', this)">Dogpile</a></li>
</ul>
</div>		</div>
			
<div id="tabcontentcontainer">

<div id="sc1" class="tabcontent">
<center>
<form method=get action="http://www.google.com/search">
<input type=hidden name=ie value=UTF-8 />
<input type=hidden name=oe value=UTF-8 />
<input TYPE=text name=q size=25 maxlength=255 value="" class="search" />
<input type=submit name=btnG value="Google" class="button" />
</form>
</center>
</div>

<div id="sc2" class="tabcontent">
<center>
<form method=get action="http://www.msn.com/search">
<input type=hidden name=ie value=UTF-8 />
<input type=hidden name=oe value=UTF-8 />
<input TYPE=text name=q size=25 maxlength=255 value="" class="search" />
<input type=submit name=btnG value="MSN" class="button" />
</form>
</center>
</div>

<div id="sc3" class="tabcontent">
<center>
<form method=get action="http://www.yahoo.co.uk/search">
<input type=hidden name=ie value=UTF-8 />
<input type=hidden name=oe value=UTF-8 />
<input TYPE=text name=q size=25 maxlength=255 value="" class="search" />
<input type=submit name=btnG value="Yahoo" class="button" />
</form>
</center>
</div>

<div id="sc4" class="tabcontent">
<center>
<form method=get action="http://www.altavista.com/search">
<input type=hidden name=ie value=UTF-8 />
<input type=hidden name=oe value=UTF-8 />
<input TYPE=text name=q size=25 maxlength=255 value="" class="search" />
<input type=submit name=btnG value="Alta Vista" class="button" />
</form>
</center>
</div>

<div id="sc5" class="tabcontent">
<center>
<form method=get action="http://www.dogpile.com/search">
<input type=hidden name=ie value=UTF-8 />
<input type=hidden name=oe value=UTF-8 />
<input TYPE=text name=q size=25 maxlength=255 value="" class="search" />
<input type=submit name=btnG value="Dogpile" class="button" />
</form>
</center>
</div>
</div>
If anyone could point me in the direction of multiple search engine code I would be grateful
Cheers
SB