function performSearch(theform) {
	if (theform.svalue.value == "") {
		alert("Please enter a value in the 'Search Value' box.");
		theform.svalue.focus();
		return false;
	};
  var searchButton = document.getElementById("searchButton"); 
	searchButton.value = 'Searching';
	searchButton.disabled = true;
	return true;
};

function searchBoxFocus() {
	var searchBox = document.getElementById('svalue');
	if(searchBox != null) searchBox.focus();
}

DQM_onload_statement = "searchBoxFocus();";

