/*Any html tags can go in the htmlString variable, you just keep adding 
  the html String += whatever lines. 
  Created 21 December 2007, Steve Merrill - Merrill.org
*/ 
				
var    htmlString = "<h3>Search</h3>"; 
       htmlString += "<form name='gs' action='http://search.cabq.gov/search' method='get' id='searchform'>";
       htmlString += "<input type='hidden' name='proxystylesheet' value='http://www.cabq.gov/components/xslt/search.php' />";
       htmlString += "<input type='hidden' name='site' value='www' />";
       htmlString += "<input type='hidden' name='output' value='xml_no_dtd' />";
       htmlString += "<input type='hidden' name='client' value='www' />";
       htmlString += "<input type='text' name='q' size='15' id='q' class='textfield' value='' />";
       htmlString += "<input type='image' name='btnG' id='btnG' class='submit' tabindex='8' src='images/submit.gif' alt='Search for text you entered' value='submit' />";
       htmlString += "</form>";

document.write(htmlString);
