function MM_jumpMenuGo(objId,targ,restore){ //v9.0
  var selObj = null;  with (document) { 
  if (getElementById) selObj = getElementById(objId);
  if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0; }
}
function onSubmitAction()
{
	if (document.fmrContacto.cNombre.value=='') {
	alert("Por favor ingrese su Nombre.");
	document.fmrContacto.cNombre.focus();
	return false;
	}
	
	if (document.fmrContacto.cEmpresa.value=='') {
	alert("Por favor ingrese su Empresa.");
	document.fmrContacto.cEmpresa.focus();
	return false;
	}
	
	if (document.fmrContacto.cCargo.value=='') {
	alert("Por favor ingrese su Cargo.");
	document.fmrContacto.cCargo.focus();
	return false;
	}
	
	if (document.fmrContacto.cTelefono.value=='') {
	alert("Por favor ingrese su Nro. Telefónico");
	document.fmrContacto.cTelefono.focus();
	return false;
	}
	
	re = /^[+\w-.&]+\@[\w-.&]+\.\w+/;
	if (!re.test(document.fmrContacto.cEmail.value)) {
	alert("Por favor ingrese una dirección de Email válida.");
	document.fmrContacto.cEmail.focus();
	return false;
	}
}
