﻿// JScript File

var xmlDoc;
var xmlDoc2;
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  xhttp2=new XMLHttpRequest();
  }
else // Internet Explorer 5/6
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  xhttp2=new ActiveXObjext("Microsoft.XMLHTTP");
  }
xhttp.open("GET","bookcatalog.xml",false);
xhttp.send(null);
xmlDoc=xhttp.responseXML;
xhttp2.open("GET","Fall2011.xml",false);
xhttp2.send(null);
xmlDoc2=xhttp2.responseXML;
var i=0;
var x=xmlDoc.getElementsByTagName("BOOK");
var y=xmlDoc2.getElementsByTagName("LATEST");
