Well, I only know the basics of formatting using html, but I think basically it would be like:
Code:
<div id="globalsearch" class="globalsearch">
<form action="http://www.midwiferyonline.co.uk/googlesearch.php" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="partner-pub-XXXXXXXXXXXXXXXXXXXXXXXX" />
<input type="hidden" name="cof" value="FORID:10" />
<input type="hidden" name="ie" value="UTF-8" />
<span class="textboxcontainer"><span> <input type="text" name="q" size="20" /></span></span>
Midwifery Online <input type="radio" name="source" value="0"> WWW <input type="radio" name="source" value="1"> <span class="buttoncontainer"><span><input type="image" class="searchbutton" src="{vb:stylevar imgdir_button}/search<vb:if condition="$stylevar['textdirection'] == 'rtl'">_rtl</vb:if>.<vb:if condition="(is_browser('ie') AND !is_browser('ie', 7) AND !is_browser('ie', 8))">gif<vb:else />png</vb:if>" name="submit" onclick="document.getElementById('navbar_search').submit;" tabindex="100"/></span></span>
</div>
</form>
I added the line in red. The maybe the code could be:
PHP Code:
if ($_REQUEST['source'] == 0)
{
$vbulletin->url = 'search.php?do=process&query=' . urlencode($_REQUEST['q']);
print_standard_redirect('', false);
}