// 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('<br/>');
document.write('&nbsp;&nbsp;&nbsp;<a href="../index.html">home</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/about_us.html">about us</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/services.html">services</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/products.html">products</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/career.html">career</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/solutions.html">solutions</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/site_map.html">site map</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('&nbsp;&nbsp;&nbsp;<a href="../html/contact_us.html">contact us</a>&nbsp;&nbsp;&nbsp;');
document.write(x.childNodes[1].childNodes[0].nodeValue);
document.write('<br><br>');
document.write('&nbsp;<span>all right reserved Planet PCI Infotech Limited. copyright @ 2006-07</span>');
document.write(x.childNodes[1].childNodes[1].nodeValue);

