function qteparecio()
{


        MSG = "Faltan los sgtes. datos:\n\n";

        if (!document.qte.nombre.value) { MSG+="Nombre\n";}
        if (!document.qte.meil.value) { MSG+="E-Mail\n";}
        if (!document.qte.comentario.value) { MSG+="Comentario\n";}
        if (!document.qte.nomb_articulo.value) { MSG+="Nombre del articulo\n";}

        

        if (MSG == "Faltan los sgtes. datos:\n\n")
        {
                return true;
        }
        else {alert(MSG); return false}

}