function validarforma() {
    var name = document.forms['forma'].Nombre;
    var email = document.forms['forma'].Email;
    var comment = document.forms['forma'].Mensaje;

	if (name.value == "Nombre")
    {
        window.alert("Por favor escriba su nombre.");
        name.focus();
        return false;
    }
    if (email.value == "E-mail")
    {
        window.alert("Por favor escriba su e-mail.");
        email.focus();
        return false;
    }
    if (email.value.indexOf("@", 0) < 0)
    {
        window.alert("Por favor escriba su e-mail.");
        email.focus();
        return false;
    }
    if (email.value.indexOf(".", 0) < 0)
    {
        window.alert("Por favor escriba su e-mail.");
        email.focus();
        return false;
    }
    if (comment.value == "Mensaje")
    {
        window.alert("Por favor escriba su mensaje.");
        comment.focus();
        return false;
    }
    return true;
}