with (classes) {
//
with (dom) {
//
with (ls) {
//
if (classes.DOMImplementationLS && DOMImplementationLS.createLSParser) ls.DOMImplementationLS = classes.DOMImplementationLS;
else {
//
ls.DOMImplementationLS = function ()
{
 with (DOMImplementationLS)
 {
  this.createLSParser = createLSParser;
  this.createLSSerializer =
  this.createLSInput =
  this.createLSOutput = null;
 }

 return this;
}
//
DOMImplementationLS.MODE_SYNCHRONOUS               = 1;
DOMImplementationLS.MODE_ASYNCHRONOUS              = 2;
//
DOMImplementationLS.createLSParser = function (mode, schemaType) { with (DOMImplementationLS) with (this)
{
 return new LSParser(mode, schemaType);
}}
//
}
//
}
//
}
//
}
