  function CheckForm(form)
  {
        if (form.c_nombre.value == "")
        {
             alert( "Por favor ingrese sus Nombres" )
             form.c_nombre.focus()
             return false
        }
        else if ( form.c_telefono.value == "" )
        {
             alert( "Por favor Ingrese su Teléfono de Contacto" )
             form.c_telefono.focus()
             return false
        }
        else if ( form.c_mail.value =="")
        {
             alert( "Por favor ingrese su Email" )
             form.c_mail.focus()
             return false
        }
        else if ( form.c_comentarios.value =="")
        {
             alert( "Por favor ingrese el contenido de sus Comentarios" )
             form.c_comentarios.focus()
             return false
        }
        else
        {
             document.form.submit()
             return true
        }
  }

