/* Change HOST to point to the volunteer site to use. */
var HOST = "www.laworks.com";

/* Specify the background color for the search page here
   using standard HTML color specification. */
var BGCOLOR = "#EEEEEE";

/* Specify whether or not to display the link to advanced
   search options. 1 for yes, 0 for no. */
var SHOWADVANCED = 1;

/* (Optional) You can change the size of the iFrame here. 
   The simple search box is a height of 480 pixels so that
   is the default. The advanced search box is 935 pixels. */
var IFRAME_WIDTH = 550;
var IFRAME_HEIGHT = 480;

/* 


   The code below should be left as-is.
   
   
*/

var url = "http://" + HOST + "/projects/widgetsearch.php";
url = url + "?bgcolor=" + escape(BGCOLOR);
url = url + "&showadvanced=" + SHOWADVANCED;

document.write("<iframe " +
	"id='handsonsearch' " +
	"src='" + url + "' " +
	"height='" + IFRAME_HEIGHT + "' " +
	"width='" + IFRAME_WIDTH + "' " +
	"frameborder='0' " +
	"marginwidth='0' " +
	"marginheight='0'>");

document.write("    Please upgrade to a browser that supports iframes to use the volunteer search.");

document.write("</iframe>");


