function ajaxfeedvtnews() {
var xmlHttpfeedvtnews=null;
try {
    xmlHttpfeedvtnews = new XMLHttpRequest(); // xmlHttp is now a XMLHttpRequest.
 } catch (e) {
    try {
       xmlHttpfeedvtnews=new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
       xmlHttpfeedvtnews=new ActiveXObject("Microsoft.XMLHTTP");
    }
 }
 xmlHttpfeedvtnews.onreadystatechange = function() {
    if (xmlHttpfeedvtnews.readyState == 4)
       try {
          if (xmlHttpfeedvtnews.status == 200) {
             document.getElementById("ajaxfeedvtnews").innerHTML 
                = xmlHttpfeedvtnews.responseText;
          }
       } catch (e) {
          document.getElementById("ajaxfeedvtnews").innerHTML 
             = "Error on Ajax return call : " + e.description;
       }
 }
var ourhost=location.host;
var ourtarget="simplepievtnews.php";
xmlHttpfeedvtnews.open("get",ourtarget);
xmlHttpfeedvtnews.send(null);
}

