function showTab(type, imd5, typeId, page)
{
  var xfield = $("#comment_textarea").val();

  $("#usersdiv").empty();
  $("#usersdiv").append("<DIV class='cfolderview' style='padding-left: 220px;'><img src='/img/line_2.gif'></DIV><div style='float:left; text-align:right; width:550px; padding-top:176px;'></div><div style='width:550px;'><div style='float:left;'><img src='/img/file_lb.gif' height='11' width='10' border='0' /></div><div style='float:left;font-size:1px;'></div><div style='float:right;'><img src='/img/file_rb.gif' height='11' width='10' border='0' /></div></div>");

  $.post('/user/'+type+'/'+imd5,
  {action:'showTab', type: type, imd5: imd5, typeId: typeId, page: page, xfield: xfield},
  function(data)
  {
    $("#usersdiv").empty();
    $("#usersdiv").append(data);
  }
  );
}

function changeCommentsWindow(Show)
{
  if(!Show)
  {
    $("#comment_window").hide();
  }
  else
  {
    $("#comment_window").show();
  }
}
