function Change_elem(id)
{
  if($("#" + id).css("display") == 'block')
  {
    $("#" + id).hide();
  }
  else
  {
    $("#" + id).show();
  }
}

