function addComment(path){
    $('div.err').remove(); 
    $.post(app_url + path + '/' + $('#url').val(), {'id' : $('#id').val(),'name' : $('#name').val(),'text' : $('#text').val()}, function(data) {
	$(data).appendTo('div#comtab');
	$('#text').attr({'value':''});
    });
}
function delComment(rur){
    $('#comment_'+rur).remove();
    $.post(app_url + "comment/delcomment", {'id' : rur}, function(data) {});
}
function dosomething(handler){
    alert(handler);
}