/*
Name: g.js
Desc: spiderbin javascript library

Created: 1/2/2006 Vic Berggren
*/

/* Search Post Routine */
function go()
{
	var basePostURL = "http://spiderbin.com/search.aspx";
	var searchString = document.Form1.q.value; 
	var httpPostString = basePostURL + "?q=" + searchString;
	
	window.location.href = httpPostString;
}