function runSearch()
{
	var formObj = document.forms['searchform'];
	var searchWords = formObj.searchtext.value;
	if (!searchWords)
	{
		alert('Please enter something to search for.');
		return;
	}
	var url = 'http://www.google.com/search?q='+ searchWords +'+site:help.my-expressions.com&l=en';
	document.location.href = url;
}
