if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
}

function getIt(topic, id) {
  //document.getElementById('headerPicture').innerHTML = "<img src='resources/amenities_header.jpg' height='130px' title='Villa Mariposa'></img>";
  //document.getElementById(id).innerHTML = "<iframe width='100%' height='100%' frameborder='0' scrolling='no' src="+topic+"> </iframe>";
  
  http.open("GET", topic, true);
  http.onreadystatechange=function() {
    if(http.readyState == 4) {
      document.getElementById(id).innerHTML = http.responseText;
    }
  }
  http.send(null);  
  //return;
}
function replaceIt(topic, id) {
  document.getElementById(id).textContent= topic;
}
function loadLink(name, url){
  if(window.frames[name]) {
    parent.window.frames[name].location = url;
    return false;
  }
  return false;
}
