// Keywords & Topics
var report_keys = new Array ("iraq", " Election 2002", " Afghanistan", " terrorism", " sexual abuse", "weird news");
var report_urls = new Array ("http://www.nandotimes.com/special_reports/iraq/", "http://newslink.nandomedia.com/NandoTimes/politics/election/", "http://www.nandotimes.com/special_reports/terrorism/", "http://www.nandotimes.com/special_reports/terrorism/", "http://www.nandotimes.com/cgi-bin/search/search.cgi?days=30&maxresults=20&wordFlag=on&sumFlag=on&andFlag=off&keywords=sexual%20abuse", "http://www.nandotimes.com/weird/");
var report_text = new Array ("<b>Special Report: Confronting Iraq</b>", "Special Report: Election 2002", "Special Report: War on Terror", "Special Report: War on Terror", "More coverage of this topic", "More stories like this in Weird News");
var report_icon = "<img src=\"http://www.nandotimes.com/nt/images/linkicons/section.gif\" width=\"25\" height=\"11\" border=\"0\">"
var report_total = report_keys.length; var foundflag = 0; var find = ""; var editorkeys;
if (editorkeys != null) {
	for(i=0; i < report_total; i++) {
		pattern = "/"+report_keys[i]+"/i";
		match = eval(pattern);
		find = match.exec(editorkeys);
		if (find != null) { 
			foundflag = 1;
			document.write("<a href=\"" + report_urls[i] + "\">" + report_icon + "<font face=\"verdana,arial\" size=-2>" + report_text[i] + "</b></font></a><br>");
		 }
		if (foundflag > 0) { i = report_total; }
	}
}
