    function showform(c) {
        var add1=document.getElementById("addcomment");
        var s=document.getElementById("showform1");
        if(add1.style.display!='none') {
        add1.style.display='none';
        s.text='Добавить отзыв';
        } else {
        add1.style.display='block';
        s.text='Скрыть форму добавления';           
        }
    }

    function showerror(text) {
    $("#login_error_msg").css("display","block");
    $("#login_error_msg").html(text);
    return false;
    }
    
    function checkform() {
        if($('#x0').val().length<2) {showerror('Укажите Ваше имя'); return false;}
        else if($('#x3').val().length<8) {showerror('Укажите Ваш контактный e-mail'); return false;}
        else if($('#x9').val().length<20 && $('#x11').val().length<20 && $('#x12').val().length<20) {showerror('Неверно указан отзыв - необходимо указать сильные/слабые стороны данного товара или указать Ваше мнение о нем.'); return false;}
        else if($('#x10').val().length!=4) {showerror('Укажите верный код добавления - 4 цифры'); return false;}
        else {
            $("#login_error_msg").css("display","none");
            document.form1.submit();
        }
    }
