//doc: Function FormSubmit()   
//doc: On click, fm... element value is changed and the form is submited
function FormSubmit(formName, elementName, elementValue) {
 	window.document.forms[formName].elements[elementName].value = elementValue;
 	window.document.forms[formName].submit();
}
