// Modify Prototype for use with AJAX Extended

if (typeof Prototype != "object")
  alert("Prototype (prototype.js) required in prototype-xmlhttp.js");
if (typeof XMLHTTP != "function")
  alert("AJAX Extended (xmlhttp.js) required in prototype-xmlhttp.js");

Ajax.getTransport = function() {
  return new XMLHTTP();
};

// EOF
