function trim(stringToTrim) {
    return stringToTrim.replace(/^\s+|\s+$/g,"");
}

function send_feedback()
{
    var form = document.getElementById("feedback_form");
    
    msg = "";
    if (trim(form.email.value) == "") {
        msg += "Введите Ваш e-mail\n";
    }
    if (trim(form.name.value) == "") {
        msg += "Введите Ваше имя\n";
    }
    if (trim(form.msg.value) == "") {
        msg += "Введите текст сообщения";
    }
    
    if (msg != "") {
        alert(msg);
    } else {
        form.submit();
    }
}