// JavaScript Document
function startSearch() {
	var strSearch = document.forms['searchForm'].searchtxt.value;

	if (strSearch != "") {
		window.location = "http://www.google.com/search?hl=en&q=" + strSearch + "+site%3Adevsollv.com&btnG=Google+Search";
	} else {
		alert("My highly evolved brain says your search for nothing will return nothing.");
	}
}