function do_search(e)
{
	var s = document.getElementById('search').value;
	if (s) {
		window.location = '/search.php?search='+s;
	}
	if (e && e.preventDefault)
		e.preventDefault(); // DOM style
	return false; // IE style
}

