function send_value(form, val, input_to_set)
{
	document.getElementById(input_to_set).value = val;
	document.getElementById(form).submit();
}
