// JavaScript Document
var text="<note>";
text=text+"<to>|</to>";
text=text+"<from>|</from>";
text=text+"<heading>|</heading>";
text=text+"<body>|</body>";
text=text+"</note>";

// code for IE
if (window.ActiveXObject)
  {
  var doc=new ActiveXObject("Microsoft.XMLDOM");
  doc.async="false";
  doc.loadXML(text);
  }
// code for Mozilla, Firefox, Opera, etc.
else
  {
  var parser=new DOMParser();
  var doc=parser.parseFromString(text,"text/xml");
  }

var x=doc.documentElement;

document.write('&nbsp;<a href="../index.html">home</a>&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;<a href="../html/sitemap.html">sitemap</a>&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;<a href="mailto:info@npccindia.com">email</a>&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;<a href="../html/feedback.html">feedback</a>&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;<a href="../html/download.html">download</a>&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
