Its an update to allow you to have an advanced search function in your header, just like ebay.
There is a screenshot and install instructions included.
Legend: 
Download

Report
there was one missed tag
add define('BOX_HEADING_ADVSEARCH', 'Advanced Search'); to catalog/includes/english.php
-corrected html code as updates below.
-updated original header.php included to RC2a
-updated install instructions
-Changed layout to be similar to bhphoto.com
-Full package
The following closing tag must be added: </form>. "Manufacturers" box might not work correctly without it.
So replace the following (see the previous post from altenter ):
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
with this:
</table>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
* no files attached
your tables are missing the closing tags at the bottom:
just before:
<?php } ?>
<?php
//
// END advanced search header script insertion
//
//
?>
add:
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
* no file attached
Sorry, wrong mod. (4am est)
please disregard my fix and file, as it is for the "BestSellers" mod..
In step 5 of the code, the tep_href_link *.* code isnt pointing to the wrong file name.
change:
#ADD:
'<a href="' . tep_href_link(FILENAME_BESTSELLERS2, '', 'NONSSL') . '" class="menuBoxContentLink">' . 'Best Sellers' . '</a><br>');
to
#ADD:
'<a href="' . tep_href_link(FILENAME_BESTSELLER, '', 'NONSSL') . '" class="menuBoxContentLink">' . 'Best Sellers' . '</a><br>');
also for cosmetic purposes,
change :
<a href="'. tep_href_link(FILENAME_PRODUCTS_EXPECTED, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_PRODUCTS_EXPECTED . '</a>');
To:
<a href="'. tep_href_link(FILENAME_PRODUCTS_EXPECTED, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_PRODUCTS_EXPECTED . '</a><br>' .
excellant tool by the way, i love the scrolly image,
I think that you have forgotton to close the form submit.
Just add </form> just before the end og th php file
BEFORE CHANGE----------------------
</tr>
<?php } ?>
<?php
//
// END advanced search header script insertion
//
//
?>
-----------------AFTER CHANGE------
</form></tr>
<?php } ?>
<?php
//
// END advanced search header script insertion
//
//
?>
Hope this helps
This is exactly as before but I have made it so the search box isnt displayed on the advanced_search.php page aswell as the checkout.
Also the script wasnt needed as the form is submit to advanced_search.php where the script is run.
you'll be happy with this one...I promise ;o)
Regards,
anthony
Its an update to allow you to have an advanced search function in your header, just like ebay.
There is a screenshot and install instructions included.