// Form actions

function changeValue(theForm, theName, theValue) {
	//Change the value
	//alert(theValue);
	document[theForm][theName].value= theValue;
}

function changeSelect(theForm, theName, fromSelect) {
      //Change value
	  //alert(document[theForm][fromSelect].value);
      document[theForm][theName].value = document[theForm][fromSelect].value;
}
function changeSelectRedirect(theForm, selectValue){
	window.location = document[theForm][selectValue].value;
}
function submitForm(theForm){
	//alert(theForm);
    document[theForm].submit();
}
