<!--
function my_submit(form, variable, value)
{
    x = document.forms[form];

    x[variable].value = value;
    x.submit();
}
//-->