
/*
 * -------
 * :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.Link = Array([this.ShortListSize]);
this.Cat = 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.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 Link LinkTitle Cat Category SubjectDayN 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);
    }
 }

     

}

nn = new nn_JSMsg();

/* how slow is the with statement */

with( nn ) {
/* Meta values
*/
MetaKeys[0] = "MetaCopyright";
MetaVals[0] = "All rights reserved. Users may download and print extracts of content from this website for their own personal and non-commercial use only. Republication or redistribution of Reuters content, including by framing or similar means, is expressly prohibited without the prior written consent of Reuters. Reuters and the Reuters sphere logo are registered trademarks or trademarks of the Reuters group of companies around the world. © Reuters 2010";
MetaKeys[1] = "MetaTitle";
MetaVals[1] = "Reuters: Top News";
MetaKeys[2] = "MetaLink";
MetaVals[2] = "http://www.reuters.com";
MetaKeys[3] = "MetaLinkTitle";
MetaVals[3] = "<A HREF=\"http://www.reuters.com\" CLASS=\"JSMsg\">Reuters: Top News</A>";
MetaKeys[4] = "MetaUpdateDate";
MetaVals[4] = "20100904220714";
MetaKeys[5] = "MetaDesc";
MetaVals[5] = "Reuters.com is your source for breaking news, business, financial and investing news, including personal finance and stocks.  Reuters is the leading global provider of news, financial information and technology solutions to the world's media, financial institutions, businesses and individuals.";


/* content vaues:
*/
Title[0] = "Obama says his economic policies halted \"bleeding\"";
Desc[0] = "WASHINGTON (Reuters) - President Barack Obama, previewing a big push on the U.S. economy next week, on Saturday defended policies that he said \"have stopped the bleeding\" and put the middle class on the road to recovery.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/R7ghxv1sAeoAPPQSRQ5HJW04Hms/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/R7ghxv1sAeoAPPQSRQ5HJW04Hms/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/R7ghxv1sAeoAPPQSRQ5HJW04Hms/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/R7ghxv1sAeoAPPQSRQ5HJW04Hms/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=7Fsg_53kahc:55prk9Gw0Mc:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=7Fsg_53kahc:55prk9Gw0Mc:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=7Fsg_53kahc:55prk9Gw0Mc:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=7Fsg_53kahc:55prk9Gw0Mc:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=7Fsg_53kahc:55prk9Gw0Mc:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/7Fsg_53kahc\" height=\"1\" width=\"1\"/&gt;";
Link[0] = "http://feeds.reuters.com/~r/reuters/topNews/~3/7Fsg_53kahc/idUSTRE6830TU20100904";
Cat[0] = "topNews";
DateN[0] = "20100904143847";

Title[1] = "Earl fizzles as it sweeps through Maritime Canada";
Desc[1] = "HALIFAX, Canada (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.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/s6krgE1lVQAQZSfFMn60ogtcucA/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/s6krgE1lVQAQZSfFMn60ogtcucA/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/s6krgE1lVQAQZSfFMn60ogtcucA/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/s6krgE1lVQAQZSfFMn60ogtcucA/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=O3y4fg_9tr0:wi-_9nduYoQ:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=O3y4fg_9tr0:wi-_9nduYoQ:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=O3y4fg_9tr0:wi-_9nduYoQ:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=O3y4fg_9tr0:wi-_9nduYoQ:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=O3y4fg_9tr0:wi-_9nduYoQ:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/O3y4fg_9tr0\" height=\"1\" width=\"1\"/&gt;";
Link[1] = "http://feeds.reuters.com/~r/reuters/topNews/~3/O3y4fg_9tr0/idUSTRE67S0HT20100905";
Cat[1] = "topNews";
DateN[1] = "20100904205034";

Title[2] = "Taxpayers likely to face initial loss on GM IPO: sources";
Desc[2] = "NEW YORK/DETROIT (Reuters) - The U.S. government is likely to take a loss on General Motors Co in the first offering of the automaker\'s stock, six people familiar with preparations for the landmark IPO said.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/GDCr2BB56ZZZAyGMsMC718x-qTU/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/GDCr2BB56ZZZAyGMsMC718x-qTU/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/GDCr2BB56ZZZAyGMsMC718x-qTU/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/GDCr2BB56ZZZAyGMsMC718x-qTU/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=W-RdypVOH_c:w6gX-S40VCo:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=W-RdypVOH_c:w6gX-S40VCo:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=W-RdypVOH_c:w6gX-S40VCo:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=W-RdypVOH_c:w6gX-S40VCo:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=W-RdypVOH_c:w6gX-S40VCo:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/W-RdypVOH_c\" height=\"1\" width=\"1\"/&gt;";
Link[2] = "http://feeds.reuters.com/~r/reuters/topNews/~3/W-RdypVOH_c/idUSTRE68102G20100903";
Cat[2] = "topNews";
DateN[2] = "20100903193347";

Title[3] = "Thousands protest French clampdown against Roma";
Desc[3] = "PARIS (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.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/Nfcsph072BjTHiX_9Fg_Wtf1IJU/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/Nfcsph072BjTHiX_9Fg_Wtf1IJU/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/Nfcsph072BjTHiX_9Fg_Wtf1IJU/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/Nfcsph072BjTHiX_9Fg_Wtf1IJU/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=-lI9ETQzJS0:b4eyeRUEk4o:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=-lI9ETQzJS0:b4eyeRUEk4o:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=-lI9ETQzJS0:b4eyeRUEk4o:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=-lI9ETQzJS0:b4eyeRUEk4o:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=-lI9ETQzJS0:b4eyeRUEk4o:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/-lI9ETQzJS0\" height=\"1\" width=\"1\"/&gt;";
Link[3] = "http://feeds.reuters.com/~r/reuters/topNews/~3/-lI9ETQzJS0/idUSTRE68316V20100904";
Cat[3] = "topNews";
DateN[3] = "20100904191907";

Title[4] = "Venezuela OKs payment for French retailer Casino";
Desc[4] = "CARACAS (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.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/IqmLziwvKqXQ_I_eUEd6d-hqmmo/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/IqmLziwvKqXQ_I_eUEd6d-hqmmo/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/IqmLziwvKqXQ_I_eUEd6d-hqmmo/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/IqmLziwvKqXQ_I_eUEd6d-hqmmo/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=9XfgSRpM-Z8:3vRyVUOLGEk:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=9XfgSRpM-Z8:3vRyVUOLGEk:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=9XfgSRpM-Z8:3vRyVUOLGEk:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=9XfgSRpM-Z8:3vRyVUOLGEk:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=9XfgSRpM-Z8:3vRyVUOLGEk:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/9XfgSRpM-Z8\" height=\"1\" width=\"1\"/&gt;";
Link[4] = "http://feeds.reuters.com/~r/reuters/topNews/~3/9XfgSRpM-Z8/idUSTRE6831ND20100904";
Cat[4] = "topNews";
DateN[4] = "20100904170956";

Title[5] = "Gales, aftershocks shake quake-hit New Zealand city";
Desc[5] = "WELLINGTON (Reuters) - Strong aftershocks and gale-force winds buffeted New Zealand\'s second biggest city of Christchurch Sunday as a clean-up got underway after the country\'s worst earthquake in 80 years.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/zYxZcilMJsbWs5fCmxkSUR2JW78/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/zYxZcilMJsbWs5fCmxkSUR2JW78/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/zYxZcilMJsbWs5fCmxkSUR2JW78/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/zYxZcilMJsbWs5fCmxkSUR2JW78/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=Wf2BHWI0jxo:Ol1A9f_i8o8:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=Wf2BHWI0jxo:Ol1A9f_i8o8:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=Wf2BHWI0jxo:Ol1A9f_i8o8:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=Wf2BHWI0jxo:Ol1A9f_i8o8:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=Wf2BHWI0jxo:Ol1A9f_i8o8:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/Wf2BHWI0jxo\" height=\"1\" width=\"1\"/&gt;";
Link[5] = "http://feeds.reuters.com/~r/reuters/topNews/~3/Wf2BHWI0jxo/idUSTRE6823Q420100905";
Cat[5] = "topNews";
DateN[5] = "20100904220103";

Title[6] = "Minister says Pakistani militants stoking sectarian rift";
Desc[6] = "ISLAMABAD (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.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/P6X33loYMqO-83DHl2rXnbgLy8E/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/P6X33loYMqO-83DHl2rXnbgLy8E/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/P6X33loYMqO-83DHl2rXnbgLy8E/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/P6X33loYMqO-83DHl2rXnbgLy8E/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=LwGI5HxDaFY:VhDFcn28pGo:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=LwGI5HxDaFY:VhDFcn28pGo:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=LwGI5HxDaFY:VhDFcn28pGo:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=LwGI5HxDaFY:VhDFcn28pGo:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=LwGI5HxDaFY:VhDFcn28pGo:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/LwGI5HxDaFY\" height=\"1\" width=\"1\"/&gt;";
Link[6] = "http://feeds.reuters.com/~r/reuters/topNews/~3/LwGI5HxDaFY/idUSTRE66T3RS20100904";
Cat[6] = "topNews";
DateN[6] = "20100904131802";

Title[7] = "Mexican judge orders drug lord held 40 more days";
Desc[7] = "MEXICO CITY (Reuters) - A Mexican judge ordered Edgar \"La Barbie\" Valdez, believed to be one of the country\'s top drug bosses, held for 40 more days of investigation, the federal prosecutor\'s office said on Saturday.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/xdVra-HKEUVTiFtlUCkY4j9OKyw/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/xdVra-HKEUVTiFtlUCkY4j9OKyw/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/xdVra-HKEUVTiFtlUCkY4j9OKyw/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/xdVra-HKEUVTiFtlUCkY4j9OKyw/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=BcUUEFuBLmw:VTERPzonHL4:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=BcUUEFuBLmw:VTERPzonHL4:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=BcUUEFuBLmw:VTERPzonHL4:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=BcUUEFuBLmw:VTERPzonHL4:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=BcUUEFuBLmw:VTERPzonHL4:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/BcUUEFuBLmw\" height=\"1\" width=\"1\"/&gt;";
Link[7] = "http://feeds.reuters.com/~r/reuters/topNews/~3/BcUUEFuBLmw/idUSTRE68314520100904";
Cat[7] = "topNews";
DateN[7] = "20100904141155";

Title[8] = "BP Gulf well \"secured,\" awaiting final kill: U.S.";
Desc[8] = "HOUSTON (Reuters) - BP Plc\'s ruptured Gulf of Mexico oil well is secure with no threat of spewing crude again, the top U.S. official overseeing the spill response said\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/HEJD7G610XtvzY7M9d9eVr4ZUKY/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/HEJD7G610XtvzY7M9d9eVr4ZUKY/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/HEJD7G610XtvzY7M9d9eVr4ZUKY/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/HEJD7G610XtvzY7M9d9eVr4ZUKY/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=foRPZnmRnOg:DsLsNu6FZB0:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=foRPZnmRnOg:DsLsNu6FZB0:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=foRPZnmRnOg:DsLsNu6FZB0:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=foRPZnmRnOg:DsLsNu6FZB0:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=foRPZnmRnOg:DsLsNu6FZB0:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/foRPZnmRnOg\" height=\"1\" width=\"1\"/&gt;";
Link[8] = "http://feeds.reuters.com/~r/reuters/topNews/~3/foRPZnmRnOg/idUSTRE6831KU20100904";
Cat[8] = "topNews";
DateN[8] = "20100904154654";

Title[9] = "Karzai announces \"peace council\" to push Taliban talks";
Desc[9] = "KABUL (Reuters) - An Afghan peace council to pursue talks with the Taliban has been set up, President Hamid Karzai said on Saturday, the latest step in a gradual move toward reconciliation with the Islamist insurgents.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~a/dXh5LqVA54mCPUapml4EzVAd0t0/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/dXh5LqVA54mCPUapml4EzVAd0t0/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~a/dXh5LqVA54mCPUapml4EzVAd0t0/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~a/dXh5LqVA54mCPUapml4EzVAd0t0/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=GA3xTiVdrow:C0mtWkB5K5w:yIl2AUoC8zA\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?d=yIl2AUoC8zA\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=GA3xTiVdrow:C0mtWkB5K5w:V_sGLiPBpWU\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=GA3xTiVdrow:C0mtWkB5K5w:V_sGLiPBpWU\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=\"http://feeds.reuters.com/~ff/reuters/topNews?a=GA3xTiVdrow:C0mtWkB5K5w:-BTjWOF_DHI\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/reuters/topNews?i=GA3xTiVdrow:C0mtWkB5K5w:-BTjWOF_DHI\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/reuters/topNews/~4/GA3xTiVdrow\" height=\"1\" width=\"1\"/&gt;";
Link[9] = "http://feeds.reuters.com/~r/reuters/topNews/~3/GA3xTiVdrow/idUSTRE68317220100904";
Cat[9] = "topNews";
DateN[9] = "20100904113133";

} // end with block
