You can now use the search box in the blog's rail (side column) to find content using Google's Site Search. The results will open in a new window. I "borrowed" and modified the code used on the SLA IT Blogging Section's blog. Search boxes are now included on these SLA TypePad blogs:
NJSLA Bulletin
NJSLA Job Listings
SLA GLitter BiTs
(You can stop reading if you're not a webmaster nerd.)
Example code to create a Google Site Search box is on a TypePad support page. I modified the TypePad-recommended code (with the help of the Blogging Section blog) to remove the Google logo, use a simpler search button, open results in a new window, and offer only the ability to search a single site. In the code below, replace example.yoursite.com with your actual URL.
<!-- SiteSearch Google --> <form method="get" action="http://www.google.com/search" target="_blank"> <input type="text" name="q" size="5" maxlength="255" style="width:95px;" /> <input type="submit" name="btnG" value="»" style="width:25px" /> <input type="hidden" name="domains" value="example.yoursite.com" /> <input type="hidden" name="sitesearch" value="example.yoursite.com" /> </form> <!-- SiteSearch Google -->