    function check(){
        if (!document.getElementById('message').value) {
            alert('Вы не указали текст сообщения');
            document.getElementById('message').focus();
            return false;
        }
        if (!document.getElementById('captcha').value) {
            alert('Вы не ввели число указанное на рисунке');
            document.getElementById('message').focus();
            return false;
        }
        new Ajax.Request('/index/check/', {
                method: 'post',
                parameters: {captcha: $('captcha').value},
                onSuccess: function(transport) {
                    if (transport.responseText == 'ok') {
                        $('send-msg').submit();

                    }else {
                        alert("Вы неправильно ввели число указанное на рисунке");
                        $('captcha').focus();
                    }
                }
            });
        
        return true;
    }

    function renewCaptcha(){
        var d=new Date();
        $('imgCaptcha').src = '/index/captcha/'+d.getTime();
    }
