<!--
function SendFormServicio()
{
  with ( document.form)                  
  {
    if (txtNombres.value == ""){
    alert ("Por favor, ingrese sus Nombres");
	txtNombres.focus();
	return false;
   }
     if (txtEmpresa.value == ""){
    alert ("Por favor, ingrese su Empresa");
	txtEmpresa.focus();
	return false;
   }
  if (txtTelefono.value == ""){
    alert ("Por favor, ingrese el telefono");
	txtTelefono.focus();
	return false;
   }  
 
 if (txtEmail.value == ""){
    alert ("Por favor, ingrese su Email");
	txtEmail.focus();
	return false;
   }
    if (txtEmail2.value == ""){
    alert ("Por favor, ingrese su Email");
	txtEmail2.focus();
	return false;
   }
    if (txtComentarios.value == ""){
    alert ("Por favor, ingrese su Email");
	txtComentarios.focus();
	return false;
   }
  }
   document.form.submit();
}

function SendFormContacto()
{
  with ( document.form1)                  
  {
	   if (txtEmails.value == ""){
    alert ("Por favor, ingrese su Email");
	txtEmails.focus();
	return false;
   }
       if (txtComentarios2.value == ""){
    alert ("Por favor, ingrese su Comentario");
	txtComentarios2.focus();
	return false;
   }
  }
   document.form1.submit();
}

