function showTags(page)
{
  var height = $("#tagsdiv").height();
  $("#tagsdiv").empty();
  $("#tagsdiv").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>");
  $("#tagsdiv").height(height);
  $.post('/tags/TagsItems',
  {action:'showTags', page: page},
  function(data)
  {
    $("#tagsdiv").empty();
    $("#tagsdiv").append(data);
    $("#tagsdiv").height('');
  }
  );
}
