
/*
 * -------
 * :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 = 17;
 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(17);
    }
    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: Business News";
MetaKeys[2] = "MetaLink";
MetaVals[2] = "http://news.yahoo.com/business";
MetaKeys[3] = "MetaLinkTitle";
MetaVals[3] = "<A HREF=\"http://news.yahoo.com/business\" CLASS=\"JSMsg\">Yahoo! News: Business News</A>";
MetaKeys[4] = "MetaUpdateDate";
MetaVals[4] = "20100905010108";
MetaKeys[5] = "MetaDesc";
MetaVals[5] = "Business News";


/* content vaues:
*/
Title[0] = "Stocks rally as jobs data spurs optimism \n    (Reuters)\n";
Desc[0] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100903/bs_nm/us_markets_stocks\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100902/i/r3482938266.jpg?x=130&y=86&q=85&sig=4xkueiHBmxAcLDCe3TPrSw--\" align=\"left\" height=\"86\" width=\"130\" alt=\"Traders work on the floor of the New York Stock Exchange, August 31, 2010. REUTERS/Brendan McDermid\" border=\"0\" />&#60;/a>Reuters - Wall Street closed a stellar week on Friday after recent economic data, including a stronger-than-expected labor market report, bolstered optimism that the economy would not fall back into recession.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[0] = "Reuters";
Link[0] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100903/bs_nm/us_markets_stocks";
Cat[0] = "business";
DateN[0] = "20100903204339";

Title[1] = "Venezuela OKs payment for French retailer Casino \n    (Reuters)\n";
Desc[1] = "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[1] = "Reuters";
Link[1] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_venezuela_retail_casino";
Cat[1] = "business";
DateN[1] = "20100904210956";

Title[2] = "Taxpayers likely to face initial loss on GM IPO: sources \n    (Reuters)\n";
Desc[2] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*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[2] = "Reuters";
Link[2] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100903/bs_nm/us_gm_ipo";
Cat[2] = "business";
DateN[2] = "20100903233347";

Title[3] = "China tells state companies to explore Potash bid \n    (Reuters)\n";
Desc[3] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_potashcorp\">&#60;img src=\"http://d.yimg.com/a/p/rids/20100903/i/r2125372004.jpg?x=130&y=86&q=85&sig=iR6UibJAWrNaB2b5wlmsfw--\" align=\"left\" height=\"86\" width=\"130\" alt=\"Potash Corp mill general superintendent Trevor Berg holds a handful of chicklet potash inside the Cory mine facilities near Saskatoon August 19, 2010. REUTERS/David Stobbe\" border=\"0\" />&#60;/a>Reuters - Chinese officials have ordered state companies to meet investment bankers to explore ways to block BHP Billiton&#39;s &#36;39 billion bid for Potash Corp, a source with direct knowledge of the matter said.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[3] = "Reuters";
Link[3] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_potashcorp";
Cat[3] = "business";
DateN[3] = "20100904030942";

Title[4] = "Obama says his economic policies halted &quot;bleeding&quot; \n    (Reuters)\n";
Desc[4] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*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[4] = "Reuters";
Link[4] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_obama_ecomomy";
Cat[4] = "business";
DateN[4] = "20100904183847";

Title[5] = "Report: SEC Investigating canceled trades \n    (AP)\n";
Desc[5] = "AP - The Securities and Exchange Commission is looking into certain types of stock trade orders that could be distorting share prices and trading volume, according to The Wall Street Journal.";
Attrib[5] = "AP";
Link[5] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100902/ap_on_bi_ge/us_sec_trading_probe";
Cat[5] = "business";
DateN[5] = "20100902122508";

Title[6] = "A rise in unemployment that is &quot;about unchanged&quot; \n    (AP)\n";
Desc[6] = "AP - For most Americans, the most important information in the monthly unemployment report is whether the jobless rate rose or fell, and by how much.";
Attrib[6] = "AP";
Link[6] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100903/ap_on_bi_ge/us_unemployment_labor_department";
Cat[6] = "business";
DateN[6] = "20100903212404";

Title[7] = "Campbell reports Q4 profit rise on better margins \n    (AP)\n";
Desc[7] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100903/ap_on_bi_ge/us_earns_campbell_soup\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100903/capt.5081492f7662453a96309ac0365e5ec3-5081492f7662453a96309ac0365e5ec3-0.jpg?x=130&y=86&q=85&sig=Y3QIGAHf_ZRiJ0UNd_iPQA--\" align=\"left\" height=\"86\" width=\"130\" alt=\"In this June 19, 2010 photograph, people walk along inside the new building at the Campbell Soup Co. headquarters, in Camden, N.J.  The Campbell Soup Co. said Friday, Sept. 3, 2010, it made a profit of $113, or 33 cents per share during the fourth fiscal quarter, when the temperature rises and its soup sales traditionally drop.  (AP Photo/Mel Evans)\" border=\"0\" />&#60;/a>AP - Summer is rarely a hot sales season for Campbell Soup Co., and this year&#039;s sweltering June and July made that even more true, but the company said Friday that cost-cutting and strong drink sales helped its net income climb.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[7] = "AP";
Link[7] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100903/ap_on_bi_ge/us_earns_campbell_soup";
Cat[7] = "business";
DateN[7] = "20100903204836";

Title[8] = "Trichet calls for united EU at the IMF \n    (AFP)\n";
Desc[8] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/afp/20100904/bs_afp/economyfinanceecbimf\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100904/capt.photo_1283623121705-1-0.jpg?x=130&y=89&q=85&sig=lF6Owx.C7kzFQUJwUB2zcw--\" align=\"left\" height=\"89\" width=\"130\" alt=\"Jean-Claude Trichet, Governor of the European Central Bank, gives a press conference at the Ambrosetti Forum at the Villa d&#39;Este hotel in Cernobbio on the Como Lake, northern Milan. European Central Bank chief Jean-Claude Trichet called Saturday for Europe to hold a united position on refomin the International Monetary Fund.(AFP/Olivier Morin)\" border=\"0\" />&#60;/a>AFP - European Central Bank chief Jean-Claude Trichet called Saturday for Europe to hold a united position on refomin the International Monetary Fund.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[8] = "AFP";
Link[8] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/afp/20100904/bs_afp/economyfinanceecbimf";
Cat[8] = "business";
DateN[8] = "20100904175855";

Title[9] = "Petrobras sells 64 bln dlrs of stock to fund oil exploration \n    (AFP)\n";
Desc[9] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/afp/20100903/bs_afp/brazileconomyoilindustrystocks\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100903/capt.photo_1283519709697-1-0.jpg?x=88&y=130&q=85&sig=DEWTox5f8omu6a5vk6zi2Q--\" align=\"left\" height=\"130\" width=\"88\" alt=\"An oil platform off the coast of Brazil. Brazil&#39;s Petrobras unveiled one of the world&#39;s biggest share offerings Friday, a sale of up to 64 billion dollars in new stock to finance oil exploration aimed at turning Brazil into a leading oil exporter of the 21st century.(AFP/File/Antonio Scorza)\" border=\"0\" />&#60;/a>AFP - Brazil&#39;s Petrobras unveiled one of the world&#39;s biggest share offerings Friday, a sale of up to 64 billion dollars in new stock to finance oil exploration aimed at turning Brazil into a leading oil exporter of the 21st century.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[9] = "AFP";
Link[9] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/afp/20100903/bs_afp/brazileconomyoilindustrystocks";
Cat[9] = "business";
DateN[9] = "20100903205708";

Title[10] = "Spending cuts before 2011 could hurt recovery: IMF, ILO \n    (AFP)\n";
Desc[10] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/afp/20100903/bs_afp/financeeconomybankrateimfilo\">&#60;img src=\"http://d.yimg.com/a/p/afp/20100903/capt.photo_1283536336555-1-0.jpg?x=105&y=130&q=85&sig=lQj5WdxzLP9vowSS2Kyr_w--\" align=\"left\" height=\"130\" width=\"105\" alt=\"The IMF and the UN labour agency are urging advanced economies not to cut government spending before 2011, warning that a move to tighten fiscal policies could hurt the global recovery.(IMF)\" border=\"0\" />&#60;/a>AFP - The IMF and the UN labour agency are urging advanced economies not to cut government spending before 2011, warning that a move to tighten fiscal policies could hurt the global recovery.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[10] = "AFP";
Link[10] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/afp/20100903/bs_afp/financeeconomybankrateimfilo";
Cat[10] = "business";
DateN[10] = "20100903175304";

Title[11] = "Exclusive: American Apparel in talks with restructuring firm \n    (Reuters)\n";
Desc[11] = "Reuters - Hipster brand American Apparel Inc  is in talks to bring in an outside restructuring firm as the manufacturer and retailer struggles to fix its flagging operations, sources told Reuters on Friday.";
Attrib[11] = "Reuters";
Link[11] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/nm/20100904/bs_nm/us_americanapparel";
Cat[11] = "business";
DateN[11] = "20100904013815";

Title[12] = "MGIC added $1.2B in mortgage coverage in August \n    (AP)\n";
Desc[12] = "AP - Private mortgage insurer Mortgage Guaranty Insurance Corp. said Friday it added $1.2 billion in new primary insurance coverage in August and the number of delinquent loans it insures declined.";
Attrib[12] = "AP";
Link[12] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100903/ap_on_bi_ge/us_mgic_mortgages";
Cat[12] = "business";
DateN[12] = "20100903185041";

Title[13] = "BP: Crews lifting device from Gulf face delay \n    (AP)\n";
Desc[13] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*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[13] = "AP";
Link[13] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100905/ap_on_bi_ge/us_gulf_oil_spill";
Cat[13] = "science";
DateN[13] = "20100905010108";

Title[14] = "Obama planning new package of economic aid \n    (AP)\n";
Desc[14] = "&#60;p>&#60;a href=\"http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100903/ap_on_re_us/us_obama_economy\">&#60;img src=\"http://d.yimg.com/a/p/ap/20100903/capt.8d11bf9b58b344838b840d49b217059d-8d11bf9b58b344838b840d49b217059d-0.jpg?x=121&y=130&q=85&sig=XfDdSOpgHQrJgCkJ85lECQ--\" align=\"left\" height=\"130\" width=\"121\" alt=\"President Barack Obama reports on the economy as the latest unemployment figures are released,  Friday, Sept. 3, 2010, in the Rose Garden at the White House in Washington.  (AP Photo/J. Scott Applewhite)\" border=\"0\" />&#60;/a>AP - Eager to jumpstart the economy ahead of crucial midterm elections, President Barack Obama said Friday he intends to unveil a new package of proposals, likely including tax cuts and targeted spending, to spark job growth.&#60;/p>&#60;br clear=\"all\"/>";
Attrib[14] = "AP";
Link[14] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ap/20100903/ap_on_re_us/us_obama_economy";
Cat[14] = "business";
DateN[14] = "20100903194453";

Title[15] = "Kia recalls tied to electrical issue \n    (Investor&#039;s Business Daily)\n";
Desc[15] = "Investor\'s Business Daily - The South Korean automaker is recalling 56,000 cars, the Soul and Sorento, sold in the U.S. and South Korea, because of defective wiring harnesses that could cause fires. Kia Motors said some harnesses made by Johnson Controls  for lighting in &#39;10 model-year Soul cars and 2011 model-year Sorento SUVs were improperly soldered, leading to possible electrical shorts. Kia&#39;s Soul sales had more than doubled through Aug. in the U.S. to nearly 44,000 units.";
Attrib[15] = "Investor&#039;s Business Daily";
Link[15] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/ibd/20100903/bs_ibd_ibd/546100";
Cat[15] = "business";
DateN[15] = "20100903223100";

Title[16] = "Crafting a Career in Eco-Chic Jewelry \n    (BusinessWeek)\n";
Desc[16] = "BusinessWeek - Goldman Sachs  may not have a lot of friends in the White House these days, but one of its former employees has made a good impression. After three years as an analyst in Goldman&#39;s fixed-income, currencies, and commodities division, Monique Pean began her own jewelry line that can now be found in Barneys, Jeffrey New York, and around the neck of Michelle Obama.";
Attrib[16] = "BusinessWeek";
Link[16] = "http://us.rd.yahoo.com/dailynews/rss/business/*http://news.yahoo.com/s/bw/20100903/bs_bw/sep2010sb2010092589904";
Cat[16] = "business";
DateN[16] = "20100903120842";

} // end with block
