function do_search( key_words ) {

      // Create a web search object
	var webSearch = new GwebSearch();
	webSearch.setUserDefinedLabel("Results");
	webSearch.setSiteRestriction("vetgen.com");

	// Create an options object
	options = new GsearcherOptions();
	options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);

      // Create the search control
      var searchControl = new GSearchControl();
      searchControl.setResultSetSize(GSearch.LARGE_RESULTSET);
	searchControl.setLinkTarget( GSearch.LINK_TARGET_SELF );
      searchControl.addSearcher(webSearch, options);

      // Tell the searcher to draw itself and tell it where to attach
      searchControl.draw(document.getElementById("content"));

      // Execute an the search using the given key words
      searchControl.execute( key_words );

	return false;
}

function test( src_string ) {
	return do_search( src_string );
}
