
function getNews() {

new Ajax.Request("http://www.lathamandneve.com/includes/rssajax.php", { 
   method: "post",
 onSuccess : function(resp){
 var txt=resp.responseText;
 if (resp.responseText.length>10){
document.getElementById('newsDiv').innerHTML=(resp.responseText);
}
 },
 onFailure : function(resp) { 
  document.getElementById('newsDiv').innerHTML="Unable to load news"; 
 }
});

}
window.onload = getNews;

