function comments_check_fields() {

	var comment_user_name=$('#comment_user_name');	
    if(comment_user_name) {
    	if (comment_user_name.val()==0) {
            alert('Ошибка: напишите Ваше имя');
           	comment_user_name.focus();
            return false;
        }
    }
    
    if ($('#comment_text').val()==0) {
        alert('Ошибка: напишите комментарий');
        $('#comment_text').focus();
        return false;
    }
	return true;
}      
