function LoadData(page, objID)
{
  if(page && objID)
  {
    $.get(page, '', Write);
  }
}
function Write(data){$("#load_rating").html(data);}