function createXMLHttpRequest(){
  try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
  try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
  try { return new XMLHttpRequest(); } catch(e) {}
  alert("XMLHttpRequest not supported");
  return null;
}


function katalog(web){
  var xhReq = createXMLHttpRequest();
  xhReq.open('GET', 'http://www.megalink.cz/out/'+web, true);
  xhReq.send(null);
}

