/*
Для формы обратной связи
*/
function checkmail() {
    with(document.forms['letter']) {
        if ((name.value == '') || (contact.value == '') || (message.value == '')) {
            document.getElementById('errmsg').style.display = 'block';
            return false;
        }
    }
    alert('Спасибо, Вше сообщение отправлено.');
    return true;
}

