function Get_ajax_news(id){
	var fl=true;
	var req = new JSHttpRequest();
    req.onreadystatechange = function() {
      if(req.readyState == 4){
      document.getElementById('Nha'+id).innerHTML='<a style="cursor:hand;" onclick="document.all.Nha'+id+'.style.display=\'none\';document.all.NhaS'+id+'.style.display=\'block\';"><b>скрыть</b></a><br>'+req.responseJS.Info; fl=true;
           }
    }
    if(fl){
     
      req.open('GET', 'ajax/load.php', true);
      req.send({ id: id});
      fl=false; 
    }
}
