function submitAction2(context, formName, actionName, process) {
  document.forms[formName].action = context + '/' + actionName + '.cj?process=' + process;
  document.forms[formName].submit();
  return false;
}

function submitAction(context, formName, actionName) {
  document.forms[formName].action = context + '/' + actionName + '.cj';
  document.forms[formName].submit();
  return false;
}

function jump2(context, path, param) {
  location.href= context + '/' + path + '.cj?' + param;
}

function jump(context, url) {
  location.href= context + '/' + url + '.cj';
}
function locationTo(thisForm) {
  var uri;
  if (window.opera) {
	// Opera
  } else if (document.all) {
	uri = thisForm.options[thisForm.selectedIndex].value;
  } else if (document.getElementById) {
    uri = thisForm.options.item(thisForm.selectedIndex).value
  } else if (document.layers) {
	// Netscape 4
  } else{
	// other
  }
  uri = uri + '.cj';
  location.href = uri;
}