function load_comments_form(id, type)
{
  $.get("comments/addform",
      {id: id, type: type},
      function(data) {$('#add_comment').html(data); })
}

function load_comments_box(id, page)
{
  $.get("comments/list",
    {id: id, type: 1, p : page},
    function(data){
      $('#comments_box').html(data);
    });
}

function post_comment()
{
  $.php('comments/submit_addform', $('#add_comment_form').formToArray(true));
  return false;
}

function submit_post(){
  var key1 = $('#key1').val();
  var text = $('#text').val();
  $('#digest').val($.md5(key1 + text));
  $.php('forumpost', $('#fpf').serialize());
  return false;
}

function subscr_details(){
  $('#subscr_details').slideToggle('slow');
  return false;
}

function gohome(){
  document.location = 'http://best-doctors.ru';
}
