
/*
 * -------
 * :ATTRIBUTION NOTICE BEGINS
 *
 * The following JSMsg functions are:
 * 
 *    (C) Copyright 2002 - 2004, 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.0e
*/
/* 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 nn_JSMsg() {

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

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



 this.ShortListSize = 20;
 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.GetMsgN = function()
 {
	return(this.ShortListSize);
 }

 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 Attrib Source Link LinkTitle Cat Category SubjectDayN Day2N MonthN Month2N Year2N Year4N YearN Year Time Hour2N Minute2N ") ) {
         return(1);

    }
    else if( this.is(msgCmd, "MetaCount") ) {
        return(20);
    }
    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);
    }
 }

     

}

nn = new nn_JSMsg();

/* how slow is the with statement */

with( nn ) {
/* Meta values
*/
MetaKeys[0] = "MetaCopyright";
MetaVals[0] = "Copyright (c) 2010 Yahoo! Inc. All rights reserved.";
MetaKeys[1] = "MetaTitle";
MetaVals[1] = "Yahoo! News: Top Stories";
MetaKeys[2] = "MetaLink";
MetaVals[2] = "http://news.yahoo.com/top-stories";
MetaKeys[3] = "MetaLinkTitle";
MetaVals[3] = "<A HREF=\"http://news.yahoo.com/top-stories\" CLASS=\"JSMsg\">Yahoo! News: Top Stories</A>";
MetaKeys[4] = "MetaUpdateDate";
MetaVals[4] = "20100905015329";
MetaKeys[5] = "MetaDesc";
MetaVals[5] = "Top Stories";


/* content vaues:
*/
Title[0] = "BP: Crews lifting device from Gulf face delay \n    (AP)\n";
Desc[0] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_bi_ge/us_gulf_oil_spill\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.20cf69a19f6144249ed2e2072be41b8d-3545772f312a4d5393453429a5938d51-0.jpg?x=130&y=97&q=85&sig=xvIB80ENJWieMffd1Fc2pA--\" align=\"left\" height=\"97\" width=\"130\" alt=\"In this image taken from video provided by BP  PLC at 12:23 a.m. EDT, Saturday Sept. 4, 2010 Aug. 3, 2010 shows the blowout preventer that failed to stop oil from spewing into the Gulf of Mexico being raised to the surface. The blowout preventer wasn&#039;t expected to reach the surface until Saturday, at which point government investigators will take possession of it. (AP Photo/BP PLC) NO SALES\" border=\"0\" />&#60;/a>AP - A crane hoisted a key piece of oil spill evidence to the surface of the Gulf of Mexico on Saturday, giving investigators their first chance to personally scrutinize the blowout preventer, the massive piece of equipment that failed stop the gusher four months ago.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[0] = "AP";
Link[0] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_bi_ge/us_gulf_oil_spill";
Cat[0] = "science";
DateN[0] = "20100905010108";

Title[1] = "Outgoing NATO deputy rues early optimism on Marjah \n    (AP)\n";
Desc[1] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_re_as/as_afghan_war_progress\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.1ef674abc90c400e8370f154702abc6d-1ef674abc90c400e8370f154702abc6d-0.jpg?x=130&y=81&q=85&sig=Wm8aZhysxikOR71MYtWAig--\" align=\"left\" height=\"81\" width=\"130\" alt=\"U.S. Marines prepare to carry one of two comrades wounded in an IED attack to a waiting U.S. Army Task Force Shadow medevac helicopter on a rescue mission west of Lashkar Gah, in southern Afghanistan, Saturday, Sept. 4, 2010. Aeromedical teams with the 101st Airborne&#039;s Task Force Destiny provide the fast medical evacuation of those wounded throughout southern Afghanistan. (AP Photo/Brennan Linsley)\" border=\"0\" />&#60;/a>AP - NATO commanders were overly optimistic when they predicted quick success taking the key Taliban-held town of Marjah last winter, the outgoing deputy commander said.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[1] = "AP";
Link[1] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_re_as/as_afghan_war_progress";
Cat[1] = "world";
DateN[1] = "20100905002233";

Title[2] = "Craigslist strikes adult services under pressure \n    (AP)\n";
Desc[2] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_hi_te/us_craigslist_adult_services\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100904/capt.photo_1283628652939-1-0.jpg?x=130&y=86&q=85&sig=SVywnAqSA3M11kaBdDTxkQ--\" align=\"left\" height=\"86\" width=\"130\" alt=\"Craigslist founder Craig Newmark stands in front of the Craigslist office in San Francisco, California in 2006. Online classifieds website Craigslist has blocked US access to its &quot;adult services&quot; listings, replacing the section tab with a &quot;censored&quot; label after criticism it was facilitating prostitution.(AFP/Getty Images/File/Justin Sullivan)\" border=\"0\" />&#60;/a>AP - Craigslist appears to have surrendered in a legal fight over erotic ads posted on its website, shutting down its adult services section Saturday and replacing it with a black bar that simply says &quot;censored.&quot;&#60;/p>&#60;br clear=\"all\"/>";
Attrib[2] = "AP";
Link[2] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_hi_te/us_craigslist_adult_services";
Cat[2] = "technology";
DateN[2] = "20100904224014";

Title[3] = "Dems&#039; prospects threatened by economic woes \n    (AP)\n";
Desc[3] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_el_ge/us_election_overview\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100903/capt.photo_1283466940284-5-0.jpg?x=130&y=88&q=85&sig=.st2XMZOKAawNyUFIt6dYw--\" align=\"left\" height=\"88\" width=\"130\" alt=\"Job seekers wait in line to show their resumes to potential employers at a career fair in Denver, Colorado. US unemployment jumped to 9.6 percent in August, the Labor Department said, as most analysts had predicted.(AFP/Getty Images/John Moore)\" border=\"0\" />&#60;/a>AP - Frustrated, discouraged and just plain mad, a lot of people who have lost jobs &mdash; or know someone who has &mdash; now want to see the names of Democrats on pink slips. And that&#039;s jeopardizing the party&#039;s chances in Ohio and all across the country in November&#039;s elections.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[3] = "AP";
Link[3] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_el_ge/us_election_overview";
Cat[3] = "";
DateN[3] = "20100904232621";

Title[4] = "Earl&#039;s biggest damage in Northeast: business \n    (AP)\n";
Desc[4] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_bi_ge/earl\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.cf2548afa8be480e9cb329d6a1dc64e7-cf2548afa8be480e9cb329d6a1dc64e7-0.jpg?x=130&y=86&q=85&sig=KaQjZM0GytYuM38nW2bIPw--\" align=\"left\" height=\"86\" width=\"130\" alt=\"From left in the canoe, Lexi Olson, 12, Petunia the pug, Corey Olsen, 9, and Amber Racette, 13, and in the water, Bennett Hartley, 7, and sister Ella, all of Brewster, Mass., enjoy what the neighborhood jokingly calls &#039;Lake Leona&#039; after Leona Terrace was flooded by Tropical Storm Earl in Brewster, Mass., on Cape Cod, Saturday, Sept. 4, 2010. According to residents, the road frequently floods during major storms but this is the highest they&#039;ve seen it.  (AP Photo/Julia Cumes)\" border=\"0\" />&#60;/a>AP - In the end, Earl&#039;s worst damage in New England was to seasonal businesses hoping to end their summer on a high note.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[4] = "AP";
Link[4] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_bi_ge/earl";
Cat[4] = "business";
DateN[4] = "20100904230120";

Title[5] = "For US Muslims, a 9/11 anniversary like no other \n    (AP)\n";
Desc[5] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_re_us/us_sept11_muslim_fear\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.d4c838a078064383b0afde51b55327bf-3604e970b4ea417c92f562a16d318225-0.jpg?x=86&y=130&q=85&sig=gmdE00eg8snSFIR5pX8UgQ--\" align=\"left\" height=\"130\" width=\"86\" alt=\"FILE - In this Sept. 1, 2010 file photo, demonstrators hold up signs during a news conference on the step of New York&#039;s City Hall. (AP Photo/Mary Altaffer, File)\" border=\"0\" />&#60;/a>AP - American Muslims are boosting security at mosques, seeking help from leaders of other faiths and airing ads underscoring their loyalty to the United States &mdash; all ahead of a 9/11 anniversary they fear could bring more trouble for their communities.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[5] = "AP";
Link[5] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_re_us/us_sept11_muslim_fear";
Cat[5] = "us";
DateN[5] = "20100904225609";

Title[6] = "Pulitzer-winning cartoonist Paul Conrad dies at 86 \n    (AP)\n";
Desc[6] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_re_us/us_obit_conrad\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.6d4cb5541ab8440fb0ed871c9505926e-6d4cb5541ab8440fb0ed871c9505926e-0.jpg?x=130&y=91&q=85&sig=UoQ5ePXnPmEYyEaFqjACgQ--\" align=\"left\" height=\"91\" width=\"130\" alt=\"FILE - This undated file photo provided by the Huntington Library/Independent Television Service shows cartoonist Paul Conrad at his drawing board. Conrad, the political cartoonist who won three Pulitzer Prizes and used his pencil to poke at politicians for more than 50 years, died Saturday Sept. 4, 2010 of natural causes at his home in Rancho Palos Verdes, Calif.  (AP Photo/Huntington Library/Independent Television Service, File) NO SALES\" border=\"0\" />&#60;/a>AP - Paul Conrad used his pencil like a weapon. His long lines and jagged angles seemed to point directly at the leaders he deemed charlatans and fools in need of deflating.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[6] = "AP";
Link[6] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_re_us/us_obit_conrad";
Cat[6] = "us";
DateN[6] = "20100904231530";

Title[7] = "N. Zealand quake smashes buildings, rips new fault \n    (AP)\n";
Desc[7] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_re_as/as_new_zealand_earthquake\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100904/i/r1899300911.jpg?x=130&y=80&q=85&sig=HtFDvakF5SOENFhtk9I3Ug--\" align=\"left\" height=\"80\" width=\"130\" alt=\"New Zealand&#39;s Prime Minister John Key surveys the damage to buildings in central Christchurch after a 7.1-magnitude earthquake hit the city September 4, 2010. REUTERS/Simon Baker\" border=\"0\" />&#60;/a>AP - The powerful 7.1-magnitude earthquake that smashed buildings, cracked roads and twisted rail lines around a New Zealand city also ripped a new 11-foot- (3.5 meter-) wide fault in the earth&#039;s surface, officials said Sunday.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[7] = "AP";
Link[7] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_re_as/as_new_zealand_earthquake";
Cat[7] = "world";
DateN[7] = "20100905004847";

Title[8] = "Shoes, eggs hurled at ex-Brit PM Blair in Dublin \n    (AP)\n";
Desc[8] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_re_eu/eu_ireland_blair\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.5180b63d4eb14289ab2d138a1301593b-5180b63d4eb14289ab2d138a1301593b-0.jpg?x=130&y=105&q=85&sig=Ca08hWy9gu52o9l7W5mFrw--\" align=\"left\" height=\"105\" width=\"130\" alt=\"Former British Prime Minister Tony Blair, right, attends a public book signing, with Conor Whelen, Managing Director of Eason book store, in Dublin, Saturday Sept. 4, 2010. Anti-war protesters hurled shoes and eggs at Tony Blair as he arrived for his first public signing of his fast-selling memoir. (AP Photo/Niall Carson, pool)\" border=\"0\" />&#60;/a>AP - Protesters hurled shoes and eggs Saturday at Tony Blair who held the first public signing of his memoir amid high security in Ireland&#039;s capital. Hundreds more people lined up to have their books autographed &mdash; evidence that the divisions left by Blair&#039;s decade as British leader have yet to heal.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[8] = "AP";
Link[8] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100904/ap_on_re_eu/eu_ireland_blair";
Cat[8] = "world";
DateN[8] = "20100904160903";

Title[9] = "Many desperate Pakistanis still wait for flood aid \n    (AP)\n";
Desc[9] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_re_as/as_pakistan_floods_the_forgotten\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100904/capt.cf6e0cd4af3148378deb987ff7c238fe-902360c94c3144389cfa55404f88f542-0.jpg?x=130&y=101&q=85&sig=P8ziPA2dTrVzdqv39Si2ng--\" align=\"left\" height=\"101\" width=\"130\" alt=\"A Pakistani family displaced by floods prepares to cross a flooded road as the rain falls,  in Shah Jamal village, Muzaffargarh district, Punjab Province, Pakistan, Saturday Sept. 4, 2010. More than 3 million people have yet to receive desperately needed food aid, according to the U.N., and the Pakistani government says nearly 1 million people have received no help of any sort. (AP Photo/Aaron Favila)\" border=\"0\" />&#60;/a>AP - Abdul Rehman and his family live under a tree next to a pile of rubble on a newly created island where his house used to be.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[9] = "AP";
Link[9] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/ap/20100905/ap_on_re_as/as_pakistan_floods_the_forgotten";
Cat[9] = "world";
DateN[9] = "20100905003146";

Title[10] = "Obama says his economic policies halted &quot;bleeding&quot; \n    (Reuters)\n";
Desc[10] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_obama_ecomomy\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100904/i/r1915879178.jpg?x=130&y=88&q=85&sig=WuLMxnYobur.62GeicS1yg--\" align=\"left\" height=\"88\" width=\"130\" alt=\"President Barack Obama (L) delivers remarks on the latest employment statistics released on Friday, alongside Treasury Secretary Tim Geithner in the Rose Garden of the White House, September 3, 2010. REUTERS/Jason Reed\" border=\"0\" />&#60;/a>Reuters - President Barack Obama, previewing a big push on the U.S. economy next week, on Saturday defended policies that he said &quot;have stopped the bleeding&quot; and put the middle class on the road to recovery.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[10] = "Reuters";
Link[10] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_obama_ecomomy";
Cat[10] = "business";
DateN[10] = "20100904183847";

Title[11] = "Earl fizzles as it sweeps through Maritime Canada \n    (Reuters)\n";
Desc[11] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100905/ts_nm/us_weather_storm_earl\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100904/i/r931187747.jpg?x=130&y=90&q=85&sig=hHowifw7pzIdj3VU_cxRLA--\" align=\"left\" height=\"90\" width=\"130\" alt=\"Two men watch as large waves break onto the rocks at Peggy&#39;s Cove, Nova Scotia September 4, 2010. Hurricane Earl lashed into the Canadian Maritime provinces on Saturday, picking up wind speed in warm Atlantic waters after a surprisingly tame brush with the U.S. East Coast. REUTERS/Paul Darrow\" border=\"0\" />&#60;/a>Reuters - Hurricane Earl made landfall in Canada on Saturday and fizzled after a series of scares along the U.S. East Coast, flooding roads, felling trees and cutting power to tens of thousands in the Atlantic province of Nova Scotia.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[11] = "Reuters";
Link[11] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100905/ts_nm/us_weather_storm_earl";
Cat[11] = "topstories";
DateN[11] = "20100905005034";

Title[12] = "Taxpayers likely to face initial loss on GM IPO: sources \n    (Reuters)\n";
Desc[12] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100903/bs_nm/us_gm_ipo\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100903/capt.03546a1f0f8844abaa9740d98f4037df-03546a1f0f8844abaa9740d98f4037df-0.jpg?x=92&y=130&q=85&sig=KJF.NTF2KYNqnmpbK4GJ8A--\" align=\"left\" height=\"130\" width=\"92\" alt=\"FILE - In this June 13, 2010 file photo, Tim Allen arrives at the world premiere of &#039;Toy Story 3,&#039; at The El Capitan Theater in Los Angeles. General Motors Co. said Friday, Sept. 3, 2010, Tim Allen will be a spokesman for the brand and will star in a series of TV ads for the 2011 Chevrolet Cruze that begin airing on Tuesday. (AP Photo/Katy Winn, file)\" border=\"0\" />&#60;/a>Reuters - The U.S. government is likely to take a loss on General Motors Co in the first offering of the automaker&#39;s stock, six people familiar with preparations for the landmark IPO said.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[12] = "Reuters";
Link[12] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100903/bs_nm/us_gm_ipo";
Cat[12] = "business";
DateN[12] = "20100903233347";

Title[13] = "Thousands protest French clampdown against Roma \n    (Reuters)\n";
Desc[13] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_france_protests\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100904/i/r322450173.jpg?x=130&y=86&q=85&sig=g8S7Wl1SWmEEx6oNNMuaog--\" align=\"left\" height=\"86\" width=\"130\" alt=\"French opposition parties, unions and civil rights groups protest against President Nicolas Sarkozy&#39;s tough anti-crime proposals in Nantes, September 4, 2010. REUTERS/Stephane Mah\" border=\"0\" />&#60;/a>Reuters - Tens of thousands protested across France on Saturday against a clampdown on immigrants, launching a week of action over policies on which President Nicolas Sarkozy has staked his political reputation.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[13] = "Reuters";
Link[13] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_france_protests";
Cat[13] = "topstories";
DateN[13] = "20100904231907";

Title[14] = "Venezuela OKs payment for French retailer Casino \n    (Reuters)\n";
Desc[14] = "Reuters - Venezuelan President Hugo Chavez has approved a $690 million payment to French retailer Casino and other owners of a supermarket chain nationalized earlier this year, state media said on Saturday.";
Attrib[14] = "Reuters";
Link[14] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_venezuela_retail_casino";
Cat[14] = "business";
DateN[14] = "20100904210956";

Title[15] = "Curfew declared after 7.1 quake hits New Zealand \n    (Reuters)\n";
Desc[15] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_quake_newzealand\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100903/i/r929212620.jpg?x=95&y=130&q=85&sig=sXvqkFvYFm2mSiWMw6nlIg--\" align=\"left\" height=\"130\" width=\"95\" alt=\"A car is seen under debris after a major earthquake in Christchurch September 4, 2010. A major earthquake of 7.4 magnitude hit New Zealand, 30 km (20 miles) west of Christchurch early on Saturday morning, causing no immediate reports of casualties but widespread damage, authorities said. REUTERS/Daniel McQueen\" border=\"0\" />&#60;/a>Reuters - Authorities declared an overnight curfew for Saturday after a major earthquake hit New Zealand&#39;s second biggest city, Christchurch, bringing down power lines and bridges and wrecking roads and building facades.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[15] = "Reuters";
Link[15] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_quake_newzealand";
Cat[15] = "topstories";
DateN[15] = "20100904072732";

Title[16] = "Minister says Pakistani militants stoking sectarian rift \n    (Reuters)\n";
Desc[16] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_pakistan_floods\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100902/i/ra641046556.jpg?x=130&y=86&q=85&sig=EoRbJA6CsmUMs3iiRLcHgg--\" align=\"left\" height=\"86\" width=\"130\" alt=\"Amira, 2, a flood victim suffering from skin and stomach problems, cries at a hospital in Sukkur, in Pakistan&#39;s Sindh province September 1, 2010. REUTERS/Damir Sagolj\" border=\"0\" />&#60;/a>Reuters - Pro-Taliban Pakistani militants are trying to create a sectarian rift, Interior Minister Rehman Malik said on Saturday, as a new wave of violence piled pressure on a government already struggling with a flood crisis.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[16] = "Reuters";
Link[16] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_pakistan_floods";
Cat[16] = "topstories";
DateN[16] = "20100904171802";

Title[17] = "Mexican judge orders drug lord held 40 more days \n    (Reuters)\n";
Desc[17] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_mexico_drugs\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100904/i/r743662530.jpg?x=130&y=91&q=85&sig=D1NBHILsoKCwZrKUhIQbmQ--\" align=\"left\" height=\"91\" width=\"130\" alt=\"Major drug trafficker Edgar &quot;La Barbie&quot; Valdez is escorted by Mexican federal police during a news conference at the federal police center in Mexico City August 31, 2010. REUTERS/Henry Romero\" border=\"0\" />&#60;/a>Reuters - A Mexican judge ordered Edgar &quot;La Barbie&quot; Valdez, believed to be one of the country&#39;s top drug bosses, held for 40 more days of investigation, the federal prosecutor&#39;s office said on Saturday.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[17] = "Reuters";
Link[17] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/nm/20100904/ts_nm/us_mexico_drugs";
Cat[17] = "topstories";
DateN[17] = "20100904180927";

Title[18] = "N.Zealand braces for more destruction after quake \n    (AFP)\n";
Desc[18] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/afp/20100905/ts_afp/nzealandquake\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100905/capt.photo_1283646140752-1-0.jpg?x=130&y=76&q=85&sig=vwDuKQ3.ShqZ6RutyYvhfw--\" align=\"left\" height=\"76\" width=\"130\" alt=\"A cyclist (C) inspects a damaged pharmacy in New Zealand&#39;s second largest city Christchurch on September 5, 2010, following a powerful 7.0 magnitude earthquake. New Zealand braced for more destruction Sunday as aftershocks rocked the region following the most devastating earthquake in decades and as a powerful storm approached.(AFP/Greg Wood)\" border=\"0\" />&#60;/a>AFP - New Zealand braced for more destruction Sunday as aftershocks rocked the region following the most devastating earthquake in decades and as a powerful storm approached.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[18] = "AFP";
Link[18] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/afp/20100905/ts_afp/nzealandquake";
Cat[18] = "topstories";
DateN[18] = "20100905003525";

Title[19] = "Police on alert as Pakistan suicide attack victims buried \n    (AFP)\n";
Desc[19] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/afp/20100904/wl_sthasia_afp/pakistanunrest\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100904/capt.photo_1283584912984-3-0.jpg?x=130&y=84&q=85&sig=546iTxALN5GN3TAZKPeNCw--\" align=\"left\" height=\"84\" width=\"130\" alt=\"Pakistanis help injured blast victims at the site of a suicide bomb attack in Quetta on September 3. Anti-terror police were on high alert in Pakistan on Saturday as mass burials took place for the victims of a suicide bomber who killed at least 59 people at a Shiite Muslim rally.(AFP/File/Banaras Khan)\" border=\"0\" />&#60;/a>AFP - Anti-terror police were on high alert in Pakistan on Saturday as mass burials took place for the victims of a suicide bomber who killed at least 59 people at a Shiite Muslim rally.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[19] = "AFP";
Link[19] = "http://us.rd.yahoo.com/dailynews/rss/topstories/*http://news.yahoo.com/s/afp/20100904/wl_sthasia_afp/pakistanunrest";
Cat[19] = "world";
DateN[19] = "20100904173342";

} // end with block
