<!--
for (var x=0; x < article.length - 1; x++) {
	for (var y=x+1; y <article.length; y++) {
	if (Date.parse(article[y].harvest_time) > Date.parse(article[x].harvest_time)) {
	         var dummy = article[x];
	         article[x] = article[y];
	         article[y] = dummy;
		}
	}
}
document.writeln("<TABLE width = 100%>");
for(i=1;i< 6;i++){
document.writeln("<TR>" + "<a href=" + article[i].url + " onmouseover= \"window.status='http://www.vatanappally.com/news';return true;\" onmouseout= \"window.status=' ';return true;\"" + " target='main'>" + "<font size=2 color=blue>"	+ article[i].headline_text + "</FONT></a>"	+ "<BR>"
	+ "<font size=1 color=navy>" + article[i].source + "</FONT>"
	+ "&nbsp; "
	+ "<FONT FACE=\"Verdana, Arial,Helvetica, sans-serif\" SIZE=-2 COLOR=666666>" + article[i].harvest_time + "</FONT>"
	+ "<BR>"  
	+ "</TR>");
}
document.writeln("</TABLE>");
// -->
