function SysSubmit(objButton,Process,Template,Cargo,ConfirmMessage,URLParm) {
	if (objButton) { objButton.disabled = true; }

	objSysForm.p.value	= Process;
	objSysForm.t.value	= Template;	
	if (arguments.length >= 4) {
		objSysForm.c.value = Cargo;
	} else {
		objSysForm.c.value = "";
	}

	if (arguments.length == 5) {
		if (confirm(ConfirmMessage)) {
			objSysForm.submit();
		} else {
			if (objButton) { objButton.disabled = false; }
		}
	} else {
		objSysForm.submit();
	}
	
	if (arguments.length == 6) {
		objSysForm.action += '&' + URLParm
		objSysForm.submit();
	}
}


