	function getGquery() 
{
	// In textstring I gather the data that are finally written to the textarea.

if (document.form1.action == 'http://www.google.com/u/chealth')
	{
	    var thequery = '';
		thequery = document.form1.Terms.value;

	// Write textstring to the textarea.

	document.form1.q.value = thequery;

    document.form1.Terms.value = '';
	document.form1.Go.value = '';
	document.form1.searchaction.value = '';
	document.form1.hl.value = 'en';
	document.form1.lr.value = '';
	document.form1.ie.value = 'ISO-8859-1';
	document.form1.domains.value = 'www.healthandenvironment.org';
	document.form1.btnG.value = 'Search';
	document.form1.sitesearch.value = '';

	}
}