// JavaScript Document
// ¼ÓÔØxmlÎÄµµ
checkXMLDocObj    = function(xmlFile)
{
    var xmlDoc;
try //Internet Explorer
  {
  xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
  }
catch(e)
  {
  try //Firefox, Mozilla, Opera, etc.
    {
    xmlDoc=document.implementation.createDocument("","",null);
    }
  catch(e)
    {
    alert(e.message);
    return;
    }
  }
xmlDoc.async=false;
xmlDoc.load(xmlFile);
    
    return xmlDoc;
}
