// 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('&#8226;&nbsp;<a href="news_and_events.html"> Padma Shri awarded to Shri Surinder<br/>&nbsp;&nbsp;&nbsp;&nbsp;Mehta </a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> Workshop on “Advances in &nbsp;&nbsp;&nbspComputational Electromagnetics<br> &nbsp;&nbsp;&nbspTechniques”  <br> &nbsp;&nbsp;&nbsp;1st July, 2010, Ahmedabad</a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> DEFEXPO 2010, New Delhi</a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> Aero India 2009, Hyderabad</a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> Map World Forum  10-13th Feb, 2009, <br> &nbsp;&nbsp;&nbsp;Hyderabad </a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> 3rd ICEIAI&nbsp;&nbsp;&nbsp;7-8th Nov, 2008</a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> India Aviation-2008, Hotel Ashok, &nbsp;&nbsp;&nbsp;New Delhi</a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html"> IICDES-2007, Hotel Ashok, New Delhi</a>');
document.write();
document.write('<br/><br/>');
document.write('&#8226;&nbsp;<a href="news_and_events.html">Defense conference-2007, Hotel Taj, &nbsp; &nbsp; &nbsp; New Delhi </a>');
document.write();

