function submitCommonForm( _selection )
{
	commonForm = document.getElementById( "commonParameter" );
	commonForm.value = _selection;
	document.CommonForm.submit( );
}

function submitCommonBodyForm( _selection )
{
	commonBodyForm = document.getElementById( "commonBodyParameter" );
	commonBodyForm.value = _selection;
	document.CommonBodyForm.submit( );
}

function submitMenuForm( _selection )
{
	//alert(_selection);
	menuForm = document.getElementById( "parameter" );
	//alert(menuForm.value);
	menuForm.value = _selection;
	document.MenuForm.submit( );
}

function submitHomeBodyForm( _selection, _parameterValue )
{
	homeBodyForm = document.getElementById( "homeBodyParameter" );
	homeBodyFormValue = document.getElementById( "homeBodyParameterValue" );
	homeBodyForm.value = _selection;	
	homeBodyFormValue.value = _parameterValue;
	document.HomeBodyForm.submit( );
}
