function submitForm( action, arg ) {

	document.forms[0].elements['action'].value = action;
	document.forms[0].elements['arg'].value = arg;
	//alert( document.forms[0].elements['action'].value );
	document.forms[0].submit();

}



