function onSubmitAction()
	{
		if (document.frmPedido.cNombre.value=='') {
			alert("Por favor ingrese su Nombre.");
			document.frmPedido.cNombre.focus();
		return false;
		}
	
		if (document.frmPedido.cEmpresa.value=='') {
			alert("Por favor ingrese su Empresa.");
			document.frmPedido.cEmpresa.focus();
		return false;
		}
	
		if (document.frmPedido.cDireccion.value=='') {
			alert("Por favor ingrese la dirección.");
			document.frmPedido.cDireccion.focus();
		return false;
		}
	
		if (document.frmPedido.cTel.value=='') {
			alert("Por favor ingrese su Nro. Telefónico");
			document.frmPedido.cTel.focus();
		return false;
		}
	
		re = /^[+\w-.&]+\@[\w-.&]+\.\w+/;
		if (!re.test(document.frmPedido.cEmail.value)) {
			alert("Por favor ingrese una dirección de Email válida.");
			document.frmPedido.cEmail.focus();
		return false;
		}
		
		if (document.frmPedido.datosok.value=='') {
			alert("Debe certificar que los datos son correctos");
			document.frmPedido.datosok.focus();
		return false;
		}
	}