function checks(theform)
    {
        var count = theform.hiddencount.value;//有几个隐藏按钮
        if (count>0)
        {
            for (var i=0;i<count;i++)
            {
                if (theform["hidden" + i].value == "")
                {
                    alert("请选择您的满意度!");
                    return false;
                    
                }
            }
                    
        return true;
        }
    }