// topEshopNews

var xmlHttp;
function getLoadText(){
  if (window.XMLHttpRequest){ xmlHttp = new XMLHttpRequest(); }else{ if (window.ActiveXObject){ xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); }else{ xmlHttp = null; } }
  xmlHttp.onreadystatechange = checkStatus;
  xmlHttp.open("GET", "http://www.felisi.net/e-shop/eshop_news.txt", true);
  xmlHttp.send(null);
}
function checkStatus(){
  if (xmlHttp.readyState == 4 && xmlHttp.status == 200){ var node = document.getElementById("eshop_news_area"); node.innerHTML = xmlHttp.responseText; }
}


