
/*----------------------------------------------------------------------------
HOLZ.JS

Copyright by
plenum stoll & fischbach Communication GmbH,
Herrenberg, Germany

holz.js 			contains functionality for linking to baumlexikon
					with post request
----------------------------------------------------------------------------*/


//	goToBaumLexikon()
//
//	Arguments
//	woodType	type of wood to search in the baumlexikon
//
//	what:		overwrites hidden field 'Suchbegriff' in the form
//				and submits the form
function goToBaumLexikon(woodType)
{
	document.forms['zumBaumlexikon'].Suchbegriff.value = woodType;
	document.forms['zumBaumlexikon'].submit();
}