
/*
 * -------
 * :ATTRIBUTION NOTICE BEGINS
 *
 * The following JSMsg functions are:
 * 
 *    (C) Copyright 2002 - 2006, Creativyst, Inc.
 *               ALL RIGHTS RESERVED
 * 
 * For more information go to:
 *   http://www.Creativyst.com/Doc/Std/JSMsg/JSMsg.htm
 * or email:
 *            Support@Creativyst.com
 * 
 * Licensed under the Open Software License version 1.1
 *
 * END ATTRIBUTION NOTICE:
 * -------
 *
 * The following version token is 
 * required by aggregators
 * -------
 * JSMsgVersion:1.0a
 * -------
 *
 * Made by: JSMFeed.pl v1.0f
*/
/* JSCpragma:StartCompress
*/
/* These functions are free software; you can redistribute 
 * them and/or modify them under the terms of the Open 
 * Software License (OSL) version 1.1 as published by
 * the Open Source Initiative;
 * 
 * This program is distributed in the hope that it will 
 * be useful, but WITHOUT ANY WARRANTY; without even the 
 * implied warranty of MERCHANTABILITY or FITNESS FOR A 
 * PARTICULAR PURPOSE. See the Open Software License
 * version 1.1 for more details.
 * 
 * For the complete details of the Open Software License
 * please visit the Open Source Initiative website.
 *
 * 
 * These functions are part of a shared convention.
 * called JSMsg.  Please see the JSMsg document
 * for more details.
 *
 * www.creativyst.com/Doc/Std/JSMsg/JSMsg.htm
 *
 * -------------------------------------------
 * Parts of this code were automatically
 * generated and may contain copyrighted
 * content from other sources as well.
 * Such content may not be used without
 * first obtaining explicit permissions
 * from their sources.
 *
 *
*/

function d_JSMsg() {

this.Title = Array([this.ShortListSize]);
this.Desc = Array([this.ShortListSize]);
this.Link = Array([this.ShortListSize]);
this.DateN = Array([this.ShortListSize]);

this.MetaKeys = Array([6]);
this.MetaVals = Array([6]);



 this.ShortListSize = 10;
 this.BeenLoaded = 0;
 this.dispNumb;

 this.Msg = function(msgPart, msgOffset)
 {
    document.write( this.Get(msgPart, msgOffset) );
 }

 this.MsgDay = function(msgPart)
 {
    document.write( this.GetDay(msgPart) );
 }

 this.MsgN = function(msgPart, msgNumber)
 {
    document.write( this.GetN(msgPart, msgNumber) );
 }


 this.Get = function(msgPart, msgOffset)
 {
    if(!msgOffset) {
        msgOffset = 0;
    }
    if(!this.BeenLoaded) {
        this.BeenLoaded = 1;
        dispNumb = 
           this.getRandInt(this.ShortListSize);
    }
    return( this.GetN(msgPart, (dispNumb + msgOffset)) );
 }

 this.GetDay = function(msgPart)
 {
    var d = new Date();
    var x = d.getDate();
    return( this.GetN(msgPart, x) );
 }


 this.GetN = function(msgPart, msgNumber)
 {
    return( this.GetNCore(msgPart, msgNumber) );
 }

 this.GetNCore = function(msgPart, msgNumber)
 {
    var myTmp;

    if(!msgPart) {
        msgPart = "Body";
    }
    if(!msgNumber) {
        msgNumber = 0;
    }

    if(msgNumber >= this.ShortListSize) {
        msgNumber = msgNumber % this.ShortListSize;
    }

    if(  this.ok(msgPart,"Type") ) {
        return(this.Type[msgNumber]);
    }
    if(  this.ok(msgPart,"Title") ) {
        return(this.Title[msgNumber]);
    }
    if(  this.ok(msgPart, "Desc Description Content") ) {
        return(this.Desc[msgNumber]);
    }
    if(  this.ok(msgPart,"Body") ) {
        return(this.Body[msgNumber]);
    }
    if(  this.ok(msgPart, "Attrib Attribute Source") ) {
        return(this.Attrib[msgNumber]);
    }
    if(  this.ok(msgPart, "Author") ) {
        if(!this.Author[msgNumber]) {
            return(this.Attrib[msgNumber]);
        }
        return(this.Author[msgNumber]);
    }

    if(  this.ok(msgPart,"DayN Day2N Day") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) { 
          myTmp = myTmp.substr(6,2);
          if(  this.ok(msgPart,"Day2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "MonthN Month2N") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) {
          myTmp = myTmp.substr(4,2)
          if(  this.ok(msgPart,"Month2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "Year2N Year4N YearN Year") ) {
        if(this.DateN[msgNumber].length) {
          if(  this.ok(msgPart,"Year2N") ) {
            return(this.DateN[msgNumber].substr(2,2));
          }
          return(this.DateN[msgNumber].substr(0,4));
        }
    }

    if(  this.ok(msgPart,"Time") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(8,6));
    }
    if(  this.ok(msgPart,"Hour2N") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(8,2));
    }
    if(  this.ok(msgPart,"Minute2N") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(10,2));
    }

    if(  this.ok(msgPart,"Link") ) {
        return(this.Link[msgNumber]);
    }
    if( this.ok(msgPart,"LinkTitle") ) {
        if(this.MetaMsg(msgPart,"Link") && this.MetaMsg(msgPart,"Title") ) {
          if( !this.Link[msgNumber] ) {
              return(this.Title[msgNumber]);
          }

          if( !this.Title[msgNumber] ) {
            this.Title[msgNumber] =  this.Link[msgNumber];              
          }
          myTmp = '<A TARGET="_blank" \n'; 
          myTmp = myTmp + 'HREF="' + this.Link[msgNumber] + '">\n';
          myTmp = myTmp + this.Title[msgNumber] + '</A>\n';

          return(myTmp);

        }
        if( this.MetaMsg(msgPart,"Title") ) {
          return(this.Title[msgNumber]);
        }
        if( this.MetaMsg(msgPart,"Link") ) {
          if( this.Link[msgNumber] ) {
            myTmp = "<A TARGET=\"_blank\" \n"; 
            myTmp = myTmp + "HREF=\"" + this.Link[msgNumber] + "\">\n";
            myTmp = myTmp + this.Link[msgNumber] + "</A>\n";
            return(myTmp);
          }
        }
        return("");
    }
    if( this.ok(msgPart,"Cat Category Subject") ) {
        return(this.Cat[msgNumber]);
    }
    if( this.ok(msgPart,"Thumb") ) {
        return(this.Thumb[msgNumber]);
    }
    if( this.ok(msgPart,"Alt") ) {
        return(this.Alt[msgNumber]);
    }

    return("");
 }




 this.getRandInt = function(RandSz)
 {
    var t, t2, t3;

    t = 0;
    while(t < .000001) {
        t = Math.random();
        t = Math.abs(t);
    }
    t2 = t * 1000000;
    t2 = Math.round(t2);
    t3 = t2 % RandSz;
    return(t3);
 }



 this.ok = function(a, b)
 {
    var t, t2;

    if(!this.is(a,b)) {
        return(0);
    }
    return(this.MetaMsg(a));
 }

 this.is = function(a, b)
 {
    var t, t2;

    t = a + " ";
    t2 = b + " ";
    t2 = t2.toUpperCase();
    t = t.toUpperCase();

    if(t2.indexOf(t) == -1) {
        return(0);
    }
    return(1);
 }


 this.MetaMsg = function(msgCmd)
 {
    var i,l;

    if( this.is(msgCmd, "Title LinkTitle Desc Description Link LinkTitle DayN Day2N MonthN Month2N Year2N Year4N YearN Year Time Hour2N Minute2N ") ) {
         return(1);

    }
    else if( this.is(msgCmd, "MetaCount") ) {
        return(10);
    }
    else {
        if(this.MetaKeys) {
            l = this.MetaKeys.length;
            for(i = 0;i < l;i++) {
                if(this.MetaKeys[i] == msgCmd) {
                    return(this.MetaVals[i]);
                }
            }
        }
        return(0);
    }
 }

     

}

d = new d_JSMsg();

/* how slow is the with statement */

with( d ) {
/* Meta values
*/
MetaKeys[0] = "MetaCopyright";
MetaVals[0] = "&amp;copy;2006 Google";
MetaKeys[1] = "MetaTitle";
MetaVals[1] = "Dalit - Google News ";
MetaKeys[2] = "MetaLink";
MetaVals[2] = "http://news.google.com/news?hl=en&amp;ned=us&amp;ie=UTF-8&amp;q=Dalit";
MetaKeys[3] = "MetaLinkTitle";
MetaVals[3] = "<A HREF=\"http://news.google.com/news?hl=en&amp;ned=us&amp;ie=UTF-8&amp;q=Dalit\" CLASS=\"JSMsg\">Dalit - Google News </A>";
MetaKeys[4] = "MetaUpdateDate";
MetaVals[4] = "20061118180110";
MetaKeys[5] = "MetaDesc";
MetaVals[5] = "Dalit - Google News ";


/* content vaues:
*/
Title[0] = "Dalit killings: Curfew imposed in Solapur - NDTV.com";
Desc[0] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td width=80 align=center valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/0i-0&fd=R&url=http://www.zeenews.com/articles.asp%3Faid%3D336320%26sid%3DNAT&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\"><img src=http://news.google.com/news?imgefp=5dytJF3IH64J&imgurl=www.zeenews.com/pics/NAT/curfew-solnews.jpg width=80 height=80 alt=\"\" border=1><br><font size=-2>Zee News</font></a></td><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/0-0&fd=R&url=http://www.ndtv.com/template/template.asp%3Ftemplate%3DDalitatrocities%26slug%3DDalit%2Bkillings%253A%2BCurfew%2Bimposed%2Bin%2BSolapur%26id%3D96587%26callid%3D1%26category%3DNational&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\"><b>Dalit</b> killings: Curfew imposed in Solapur</a><br><font size=-1><font color=#6f6f6f>NDTV.com,&nbsp;India&nbsp;-</font> <nobr>12 hours ago</nobr></font><br><font size=-1>The backlash of the Khairlanji killings continue after clashes in Solapur on Friday between <b>Dalit</b> and Upper caste groups. Curfew <b>...</b>  </font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/0-1&fd=R&url=http://peacejournalism.com/ReadArticle.asp%3FArticleID%3D11595&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\">Khairlanji&#39;s <b>Dalit</b> Victims want justice with dignity</a> <font size=-1 color=#6f6f6f><nobr>PeaceJournalism.com</nobr></font></font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/0-2&fd=R&url=http://www.zeenews.com/articles.asp%3Faid%3D336320%26sid%3DNAT&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\">Khairlanji killings: Curfew imposed in Solapur</a> <font size=-1 color=#6f6f6f><nobr>Zee News</nobr></font></font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/0-3&fd=R&url=http://www.countercurrents.org/dalit-gatade181106.htm&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\">Khairlanji : All Nero&#39;s Brethren</a> <font size=-1 color=#6f6f6f><nobr>CounterCurrents.org</nobr></font></font><br><font size=-1 class=p><a href=\"http://news.google.com/news/url?sa=T&ct=us/0-4&fd=R&url=http://www.ndtv.com/template/template.asp%3Fcategory%3DNational%26template%3Ddalitatrocities%26slug%3DPolice%2Blathicharge%2Bin%2BSolapur%26id%3D96558%26callid%3D1&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\"><nobr>NDTV.com</nobr></a>&nbsp;- <a href=\"http://news.google.com/news/url?sa=T&ct=us/0-5&fd=R&url=http://www.ndtv.com/template/template.asp%3Ftemplate%3DDalitatrocities%26slug%3DDalit%2Bkillings%253A%2BPM%2Bassures%2Bjustice%26id%3D96458%26callid%3D1%26category%3DNational&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG\"><nobr>NDTV.com</nobr></a></font><br/><font class=p size=-1><a class=p href=http://news.google.com/news?hl=en&ned=us&ie=UTF-8&ncl=1111326402><nobr>all 17 news articles</nobr></a></font></table>";
Link[0] = "http://news.google.com/news/url?sa=T&ct=us/0-0&fd=R&url=http://www.ndtv.com/template/template.asp%3Ftemplate%3DDalitatrocities%26slug%3DDalit%2Bkillings%253A%2BCurfew%2Bimposed%2Bin%2BSolapur%26id%3D96587%26callid%3D1%26category%3DNational&cid=1111326402&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[0] = "20061118054200";

Title[1] = "Return of the Dalit panther - Daily Pioneer";
Desc[1] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/1-0&fd=R&url=http://www.dailypioneer.com/columnist1.asp%3Fmain_variable%3DColumnist%26file_name%3Dprasad%252Fprasad185.txt%26writer%3Dprasad&cid=1111324732&ei=ZUpfRaiWO8bGHOrq8PEG\">Return of the <b>Dalit</b> panther</a><br><font size=-1><font color=#6f6f6f>Daily Pioneer,&nbsp;India&nbsp;-</font> <nobr>1 hour ago</nobr></font><br><font size=-1><b>...</b> Most <b>Dalit</b> killings are accompanied by inflicting humiliations. <b>...</b> As the news of Khairlanji savagery spread, the <b>Dalit</b> youth in Maharashtra got restless. <b>...</b>  </font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/1-1&fd=R&url=http://www.cybernoon.com/DisplayArticle.asp%3Fsection%3Dfromthepress%26subsection%3Deditorials%26xfile%3DNovember2006_roundup_standard158%26child%3Droundup&cid=1111324732&ei=ZUpfRaiWO8bGHOrq8PEG\">Savage mafia in rural India</a> <font size=-1 color=#6f6f6f><nobr>Afternoon Dispatch & Courier</nobr></font></font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/1-2&fd=R&url=http://www.tehelka.com/story_main22.asp%3Ffilename%3DNe112506The_higher_p20.asp&cid=1111324732&ei=ZUpfRaiWO8bGHOrq8PEG\">‘The Higher You Go, the Less Caste Matters’</a> <font size=-1 color=#6f6f6f><nobr>Tehelka (subscription)</nobr></font></font><br><font class=p size=-1><a class=p href=http://news.google.com/news?hl=en&ned=us&ie=UTF-8&ncl=1111324732><nobr>all 3 news articles</nobr></a></font></table>";
Link[1] = "http://news.google.com/news/url?sa=T&ct=us/1-0&fd=R&url=http://www.dailypioneer.com/columnist1.asp%3Fmain_variable%3DColumnist%26file_name%3Dprasad%252Fprasad185.txt%26writer%3Dprasad&cid=1111324732&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[1] = "20061118164800";

Title[2] = "India: The Demand of Dalit Christian Reservation needs People ... - Pakistan Christian Post";
Desc[2] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/2-0&fd=R&url=http://www.pakistanchristianpost.com/articledetails.php%3Fartid%3D384&cid=1111307954&ei=ZUpfRaiWO8bGHOrq8PEG\">India: The Demand of <b>Dalit</b> Christian Reservation needs People <b>...</b></a><br><font size=-1><font color=#6f6f6f>Pakistan Christian Post,&nbsp;Pakistan&nbsp;-</font> <nobr>18 hours ago</nobr></font><br><font size=-1><b>...</b> In Presidential Order list of SC/ST 1950, only the <b>Dalit</b> Hindu members were listed in SC/ST categories while leaving all other religions different from Hinduism <b>...</b>  </font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/2-1&fd=R&url=http://www.pakistanchristianpost.com/newsviewsdetails.php%3Fnewsid%3D628&cid=1111307954&ei=ZUpfRaiWO8bGHOrq8PEG\">Christian not untouchable, Indian court rules</a> <font size=-1 color=#6f6f6f><nobr>Pakistan Christian Post</nobr></font></font><br><font class=p size=-1><a class=p href=http://news.google.com/news?hl=en&ned=us&ie=UTF-8&ncl=1111307954><nobr>all 2 news articles</nobr></a></font></table>";
Link[2] = "http://news.google.com/news/url?sa=T&ct=us/2-0&fd=R&url=http://www.pakistanchristianpost.com/articledetails.php%3Fartid%3D384&cid=1111307954&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[2] = "20061117230500";

Title[3] = "Solapur remains tense after rioting - Hindustan Times";
Desc[3] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/3-0&fd=R&url=http://www.hindustantimes.com/news/181_1847512,000900040001.htm&cid=1110939560&ei=ZUpfRaiWO8bGHOrq8PEG\">Solapur remains tense after rioting</a><br><font size=-1><font color=#6f6f6f>Hindustan Times,&nbsp;India&nbsp;-</font> <nobr>3 hours ago</nobr></font><br><font size=-1><b>...</b> curfew for 12 hours during the day because of incidents of stone pelting, arson and damaging of properties following clashes between <b>Dalit</b> organisations and <b>...</b>  </font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/3-1&fd=R&url=http://www.chennaionline.com/colnews/newsitem.asp%3FNEWSID%3D%257BCC612BE7-95F6-46AF-92A3-8F860AE5FD6D%257D%26CATEGORYNAME%3DCRME&cid=1110939560&ei=ZUpfRaiWO8bGHOrq8PEG\">Curfew in Solapur</a> <font size=-1 color=#6f6f6f><nobr>Chennai Online</nobr></font></font><br><font class=p size=-1><a class=p href=http://news.google.com/news?hl=en&ned=us&ie=UTF-8&ncl=1110939560><nobr>all 2 news articles</nobr></a></font></table>";
Link[3] = "http://news.google.com/news/url?sa=T&ct=us/3-0&fd=R&url=http://www.hindustantimes.com/news/181_1847512,000900040001.htm&cid=1110939560&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[3] = "20061118145700";

Title[4] = "Why have the state’s top leaders ignored Khairalanji? - Afternoon Dispatch & Courier";
Desc[4] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/4-0&fd=R&url=http://www.cybernoon.com/DisplayArticle.asp%3Fsection%3Dfromthepress%26subsection%3Dinbombay%26xfile%3DNovember2006_inbombay_standard11405&cid=1111314216&ei=ZUpfRaiWO8bGHOrq8PEG\">Why have the state’s top leaders ignored Khairalanji?</a><br><font size=-1><font color=#6f6f6f>Afternoon Dispatch & Courier,&nbsp;India&nbsp;-</font> <nobr>12 hours ago</nobr></font><br><font size=-1><b>...</b> What amazing is that all the top officials related to this case are <b>Dalit</b> but they adopted lackluster approach and in spite of victims being <b>Dalit</b> they did not <b>...</b>  </font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/4-1&fd=R&url=http://www.hindustantimes.com/news/181_1846430,000900040001.htm&cid=1111314216&ei=ZUpfRaiWO8bGHOrq8PEG\">Cong for action against NCP MLA, BJP leaders</a> <font size=-1 color=#6f6f6f><nobr>Hindustan Times</nobr></font></font><br><font class=p size=-1><a class=p href=http://news.google.com/news?hl=en&ned=us&ie=UTF-8&ncl=1111314216><nobr>all 2 news articles</nobr></a></font></table>";
Link[4] = "http://news.google.com/news/url?sa=T&ct=us/4-0&fd=R&url=http://www.cybernoon.com/DisplayArticle.asp%3Fsection%3Dfromthepress%26subsection%3Dinbombay%26xfile%3DNovember2006_inbombay_standard11405&cid=1111314216&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[4] = "20061118052000";

Title[5] = "Panel suggests quota for Dalit Muslims - Calcutta Telegraph";
Desc[5] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td width=80 align=center valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/5i-0&fd=R&url=http://www.outlookindia.com/full.asp%3Ffodname%3D20061127%26fname%3DMuslims%2B(F)%26sid%3D1&cid=1111229111&ei=ZUpfRaiWO8bGHOrq8PEG\"><img src=http://news.google.com/news?imgefp=uXa8VFlGyQcJ&imgurl=www.outlookindia.com/images/muslims_20061127.jpg width=79 height=54 alt=\"\" border=1><br><font size=-2>Outlook (subscription)</font></a></td><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/5-0&fd=R&url=http://www.telegraphindia.com/1061117/asp/nation/story_7013701.asp&cid=1111229111&ei=ZUpfRaiWO8bGHOrq8PEG\">Panel suggests quota for <b>Dalit</b> Muslims</a><br><font size=-1><font color=#6f6f6f>Calcutta Telegraph,&nbsp;India&nbsp;-</font> <nobr>Nov 16, 2006</nobr></font><br><font size=-1>16: A central panel’s suggestion to give <b>Dalit</b> Muslims a share of the other backward classes pie has the champions of the backwards cause caught in a cleft <b>...</b>  </font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/5-1&fd=R&url=http://www.hindustantimes.com/news/5922_1845985,0015002500000005.htm&cid=1111229111&ei=ZUpfRaiWO8bGHOrq8PEG\">Paswan presses for quota in pvt sector</a> <font size=-1 color=#6f6f6f><nobr>Hindustan Times</nobr></font></font><br><font size=-1><a href=\"http://news.google.com/news/url?sa=T&ct=us/5-2&fd=R&url=http://www.outlookindia.com/full.asp%3Ffodname%3D20061127%26fname%3DMuslims%2B(F)%26sid%3D1&cid=1111229111&ei=ZUpfRaiWO8bGHOrq8PEG\">India Counts Its New Dalits</a> <font size=-1 color=#6f6f6f><nobr>Outlook (subscription)</nobr></font></font><br><font class=p size=-1><a class=p href=http://news.google.com/news?hl=en&ned=us&ie=UTF-8&ncl=1111229111><nobr>all 3 news articles</nobr></a></font></table>";
Link[5] = "http://news.google.com/news/url?sa=T&ct=us/5-0&fd=R&url=http://www.telegraphindia.com/1061117/asp/nation/story_7013701.asp&cid=1111229111&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[5] = "20061116210500";

Title[6] = "Naxals vow revenge for Dalit family - CNN-IBN";
Desc[6] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td width=80 align=center valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/6i-0&fd=R&url=http://www.ibnlive.com/news/naxals-vow-revenge-for-dalit-family/26438-3.html&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG\"><img src=http://news.google.com/news?imgefp=08PFdP4C3nwJ&imgurl=static.ibnlive.com/pix/sitepix/11_2006/dalit-links_248.jpg width=79 height=57 alt=\"\" border=1><br><font size=-2>CNN-IBN</font></a></td><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/6-0&fd=R&url=http://www.ibnlive.com/news/naxals-vow-revenge-for-dalit-family/26438-3.html&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG\">Naxals vow revenge for <b>Dalit</b> family</a><br><font size=-1><font color=#6f6f6f>CNN-IBN,&nbsp;India&nbsp;-</font> <nobr>Nov 17, 2006</nobr></font><br><font size=-1>Nagpur : The Khairlanji killings of a <b>Dalit</b> family set off a wave of public outrage in Vidarbha, but also unleashed a political storm over the lack of justice <b>...</b>  </font><br></table>";
Link[6] = "http://news.google.com/news/url?sa=T&ct=us/6-0&fd=R&url=http://www.ibnlive.com/news/naxals-vow-revenge-for-dalit-family/26438-3.html&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[6] = "20061117162700";

Title[7] = "CBI will investigate Dalit killings in Khairlangi - Daily News & Analysis";
Desc[7] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/7-0&fd=R&url=http://www.dnaindia.com/report.asp%3FNewsID%3D1064159&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG\">CBI will investigate <b>Dalit</b> killings in Khairlangi</a><br><font size=-1><font color=#6f6f6f>Daily News & Analysis,&nbsp;India&nbsp;-</font> <nobr>Nov 14, 2006</nobr></font><br><font size=-1>The state government on Tuesday decided to hand over the investigations of the <b>Dalit</b> killings in Khairlangi village, Bhandara district, to the CBI. <b>...</b>  </font><br></table>";
Link[7] = "http://news.google.com/news/url?sa=T&ct=us/7-0&fd=R&url=http://www.dnaindia.com/report.asp%3FNewsID%3D1064159&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[7] = "20061114192500";

Title[8] = "CBI to probe Dalit killings - Hindustan Times";
Desc[8] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/8-0&fd=R&url=http://www.hindustantimes.com/news/181_1844408,000900040001.htm&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG\">CBI to probe <b>Dalit</b> killings</a><br><font size=-1><font color=#6f6f6f>Hindustan Times,&nbsp;India&nbsp;-</font> <nobr>Nov 14, 2006</nobr></font><br><font size=-1><b>...</b> personnel, were injured as protesters went on the rampage through Amravati city, some 150 kilometers from Nagpur, to protest the recent <b>Dalit</b> killings in <b>...</b>  </font><br></table>";
Link[8] = "http://news.google.com/news/url?sa=T&ct=us/8-0&fd=R&url=http://www.hindustantimes.com/news/181_1844408,000900040001.htm&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[8] = "20061114223200";

Title[9] = "CBI to probe Dalit massacre near Nagpur - Times of India";
Desc[9] = "<br><table border=0 width= valign=top cellpadding=2 cellspacing=7><tr><td valign=top><a href=\"http://news.google.com/news/url?sa=T&ct=us/9-0&fd=R&url=http://timesofindia.indiatimes.com/NEWS/India/CBI_to_probe_Dalit_massacre_near_Nagpur/articleshow/447943.cms&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG\">CBI to probe <b>Dalit</b> massacre near Nagpur</a><br><font size=-1><font color=#6f6f6f>Times of India,&nbsp;India&nbsp;-</font> <nobr>Nov 15, 2006</nobr></font><br><font size=-1>MUMBAI/AMRAVATI: Shaken by Tuesday&#39;s violent <b>Dalit</b> protests in Amravati against the Khairlanji massacre, Maharashtra deputy chief minister RR Patil said that <b>...</b>  </font><br></table>";
Link[9] = "http://news.google.com/news/url?sa=T&ct=us/9-0&fd=R&url=http://timesofindia.indiatimes.com/NEWS/India/CBI_to_probe_Dalit_massacre_near_Nagpur/articleshow/447943.cms&cid=0&ei=ZUpfRaiWO8bGHOrq8PEG";
DateN[9] = "20061115143000";

} // end with block
