
/*
 * -------
 * :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 news_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 = 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.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(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);
    }
 }

     

}

news = new news_JSMsg();

/* how slow is the with statement */

with( news ) {
/* Meta values
*/
MetaKeys[0] = "MetaCopyright";
MetaVals[0] = "2009 CBS Interactive Inc. All rights reserved";
MetaKeys[1] = "MetaTitle";
MetaVals[1] = "CNET News.com";
MetaKeys[2] = "MetaLink";
MetaVals[2] = "http://news.cnet.com/";
MetaKeys[3] = "MetaLinkTitle";
MetaVals[3] = "<A HREF=\"http://news.cnet.com/\" CLASS=\"JSMsg\">CNET News.com</A>";
MetaKeys[4] = "MetaUpdateDate";
MetaVals[4] = "20091215013011";
MetaKeys[5] = "MetaDesc";
MetaVals[5] = "Tech news and business reports by CNET News. Focused oninformation technology, core topics include computers, hardware, software,networking, and Internet media..";


/* content vaues:
*/
Title[0] = "LimeWire enlists AVG for user protection";
Desc[0] = "Notorious as a malware ghetto, LimeWire takes its first steps to integrate authoritative threat protection by signing on AVG to provide premium users with download scanning and blocking.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/9739cc4/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65750031269/u/49/f/475521/c/32447/s/158571716/a2.htm\"><img src=\"http://da.feedsportal.com/r/65750031269/u/49/f/475521/c/32447/s/158571716/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/l7LHGDF-y1Q\" height=\"1\" width=\"1\"/>";
Link[0] = "http://rss.feedsportal.com/c/32447/f/475521/s/9739cc4/l/0Ldownload0Bcnet0N0C830A10E20A0A70I40E10A46740A80E120Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[0] = "20100311005300";

Title[1] = "Twitter to block malicious links";
Desc[1] = "Links in direct messages on Twitter and e-mail notifications about direct messages will be filtered in an attempt to stop phishing attacks.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/9733af1/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65750139561/u/49/f/475521/c/32447/s/158546673/a2.htm\"><img src=\"http://da.feedsportal.com/r/65750139561/u/49/f/475521/c/32447/s/158546673/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/bib7Ow8-9i0\" height=\"1\" width=\"1\"/>";
Link[1] = "http://rss.feedsportal.com/c/32447/f/475521/s/9733af1/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4671520E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[1] = "20100310210700";

Title[2] = "WhitePages.com halts ad networks over malware";
Desc[2] = "Site investigates malware delivered via ads on its site in a fake antivirus attack similar to that on the Drudge Report site.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/972a7dd/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65750022483/u/49/f/475521/c/32447/s/158509021/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/65750022483/u/49/f/475521/c/32447/s/158509021/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/A0klxTOt5EI\" height=\"1\" width=\"1\"/>";
Link[2] = "http://rss.feedsportal.com/c/32447/f/475521/s/972a7dd/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4667530E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[2] = "20100310170100";

Title[3] = "LifeLock to pay $12 million to settle deceptive-practices claim";
Desc[3] = "FTC complaint alleged that LifeLock made false claims for adequately protecting customers from identity fraud and data theft.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/9727ecb/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65750020437/u/49/f/475521/c/32447/s/158498507/a2.htm\"><img src=\"http://da.feedsportal.com/r/65750020437/u/49/f/475521/c/32447/s/158498507/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/b8hsF5Vx52o\" height=\"1\" width=\"1\"/>";
Link[3] = "http://rss.feedsportal.com/c/32447/f/475521/s/9727ecb/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4667410E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[3] = "20100310160200";

Title[4] = "Malware found on HTC Android phone from Vodafone";
Desc[4] = "HTC mobile device running Android was distributed by Vodafone with a botnet program on it, as well as Conficker and a password-stealing Trojan, Panda Labs says.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/96ede8b/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65750218906/u/49/f/475521/c/32447/s/158260875/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/65750218906/u/49/f/475521/c/32447/s/158260875/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/towslSAsh7I\" height=\"1\" width=\"1\"/>";
Link[4] = "http://rss.feedsportal.com/c/32447/f/475521/s/96ede8b/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A466230A0E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[4] = "20100309204000";

Title[5] = "Microsoft warns of zero-day IE hole on Patch Tuesday";
Desc[5] = "New vulnerability in Windows and Office could allow an attacker to take control of IE 6 and IE 7 systems, software maker says.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/96ec64e/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65749992516/u/49/f/475521/c/32447/s/158254670/a2.htm\"><img src=\"http://da.feedsportal.com/r/65749992516/u/49/f/475521/c/32447/s/158254670/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/sXXF2i_Ox9M\" height=\"1\" width=\"1\"/>";
Link[5] = "http://rss.feedsportal.com/c/32447/f/475521/s/96ec64e/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4661990E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[5] = "20100309194800";

Title[6] = "Drudge Report accused of serving malware, again";
Desc[6] = "Drudge says a Senate committee has falsely accused the conservative news aggregation site of spreading malware, but a CNET reader says it\'s true.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/96e5002/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65749989001/u/49/f/475521/c/32447/s/158224386/kg/65/a2.htm\"><img src=\"http://da.feedsportal.com/r/65749989001/u/49/f/475521/c/32447/s/158224386/kg/65/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/xTFNmgM09K8\" height=\"1\" width=\"1\"/>";
Link[6] = "http://rss.feedsportal.com/c/32447/f/475521/s/96e5002/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4660A440E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[6] = "20100309173100";

Title[7] = "Backdoor found in Energizer Duo USB battery charger";
Desc[7] = "The battery maker says it doesn\'t know how the Trojan got into the software it offered via download for Windows-based computers.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/969b07f/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65671827781/u/49/f/475521/c/32447/s/157921407/kg/65/a2.htm\"><img src=\"http://da.feedsportal.com/r/65671827781/u/49/f/475521/c/32447/s/157921407/kg/65/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/mC_lcOXivS0\" height=\"1\" width=\"1\"/>";
Link[7] = "http://rss.feedsportal.com/c/32447/f/475521/s/969b07f/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4654290E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[7] = "20100308171000";

Title[8] = "Police get Webcam pictures in school spy case";
Desc[8] = "Two IT employees at Lower Merion School District have been put on administrative leave while alleged misuse of Webcams in student laptops is investigated.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/964ce90/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65406263551/u/49/f/475521/c/32447/s/157601424/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/65406263551/u/49/f/475521/c/32447/s/157601424/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/ip7EzQEuRYE\" height=\"1\" width=\"1\"/>";
Link[8] = "http://rss.feedsportal.com/c/32447/f/475521/s/964ce90/l/0Lnews0Bcnet0N0C830A10E195180I30E10A4651170E2380Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[8] = "20100306211237";

Title[9] = "At RSA 2010, the secure and the insecure (photos)";
Desc[9] = "The cybersecurity conference in San Francisco brings together hackers and security professionals to decode the latest threats to the digital world.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/962c1b1/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/65407452211/u/49/f/475521/c/32447/s/157467057/kg/67/a2.htm\"><img src=\"http://da.feedsportal.com/r/65407452211/u/49/f/475521/c/32447/s/157467057/kg/67/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/O3tpVaBLGgc\" height=\"1\" width=\"1\"/>";
Link[9] = "http://rss.feedsportal.com/c/32447/f/475521/s/962c1b1/l/0Lnews0Bcnet0N0C230A0A0E10A0A90I30E10A0A0A26990Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[9] = "20100305220449";

Title[10] = "RSA 2010: Taking on cyberthreats";
Desc[10] = "<b style=\"color:#900;\">roundup</b> Everyone who\'s got cybersecurity on the brain--politicians, Web giants, and security vendors alike--are descending on RSA this week.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/9595a90/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436179369/u/49/f/475521/c/32447/s/156850832/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436179369/u/49/f/475521/c/32447/s/156850832/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/jm9YkBSgBRU\" height=\"1\" width=\"1\"/>";
Link[10] = "http://rss.feedsportal.com/c/32447/f/475521/s/9595a90/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E10A4627170E830Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[10] = "20100305000900";

Title[11] = "Microsoft to fix eight Windows and Office holes";
Desc[11] = "Microsoft will have a relatively light Patch Tuesday next week, fixing eight holes with two bulletins, but a fix for a zero-day VBScript vulnerability is still pending.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/95efc41/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436193438/u/49/f/475521/c/32447/s/157219905/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436193438/u/49/f/475521/c/32447/s/157219905/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/io_wQ03uAtQ\" height=\"1\" width=\"1\"/>";
Link[11] = "http://rss.feedsportal.com/c/32447/f/475521/s/95efc41/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4642310E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[11] = "20100304235300";

Title[12] = "Symantec exhibit makes cybercrime tangible";
Desc[12] = "In a highly visual, hands-on display at RSA, the security firm shows tools and methods used for cybercrime and identity fraud.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/95efc42/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436193437/u/49/f/475521/c/32447/s/157219906/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436193437/u/49/f/475521/c/32447/s/157219906/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/LyvbR_MG2R0\" height=\"1\" width=\"1\"/>";
Link[12] = "http://rss.feedsportal.com/c/32447/f/475521/s/95efc42/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4641610E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[12] = "20100304235200";

Title[13] = "\'Mission Impossible\'-style heist hits N.J. Best Buy";
Desc[13] = "Stealthy thieves rob a Best Buy in New Jersey \"Mission Impossible\" style, making off with $26,000 in Apple laptops.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/95e78e4/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436219784/u/49/f/475521/c/32447/s/157186276/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436219784/u/49/f/475521/c/32447/s/157186276/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/kL939V2yMwc\" height=\"1\" width=\"1\"/>";
Link[13] = "http://rss.feedsportal.com/c/32447/f/475521/s/95e78e4/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E10A4640A0A10E830Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[13] = "20100304191800";

Title[14] = "Study lauds IE for blocking Web\'s social attacks";
Desc[14] = "The study, funded by Microsoft, concludes that Microsoft\'s browser bests competitors in blocking socially engineered malware attacks.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/95de6e4/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436195156/u/49/f/475521/c/32447/s/157148900/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436195156/u/49/f/475521/c/32447/s/157148900/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/G7jLPu34O64\" height=\"1\" width=\"1\"/>";
Link[14] = "http://rss.feedsportal.com/c/32447/f/475521/s/95de6e4/l/0Lnews0Bcnet0N0C830A10E30A6850I30E20A0A0A0A1230E2640Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[14] = "20100304155500";

Title[15] = "McAfee: Source code is easy target within corporations";
Desc[15] = "McAfee\'s analysis of Perforce software, which is used to house source code, finds numerous security weaknesses.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/95aff05/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436156050/u/49/f/475521/c/32447/s/156958469/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436156050/u/49/f/475521/c/32447/s/156958469/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/9ByA1Y2nXIM\" height=\"1\" width=\"1\"/>";
Link[15] = "http://rss.feedsportal.com/c/32447/f/475521/s/95aff05/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A463240A0E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[15] = "20100303210100";

Title[16] = "Study: Medical identity theft is costly for victims";
Desc[16] = "New report finds that it can cost tens of thousands of dollars if someone uses your identity or insurance coverage to pay for medical treatment.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/9593de4/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436153514/u/49/f/475521/c/32447/s/156843492/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436153514/u/49/f/475521/c/32447/s/156843492/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/qwxwO2phiV8\" height=\"1\" width=\"1\"/>";
Link[16] = "http://rss.feedsportal.com/c/32447/f/475521/s/9593de4/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A460A90A20E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[16] = "20100303130000";

Title[17] = "Spain arrests three accused of running huge botnet";
Desc[17] = "The so-called Mariposa botnet was made up of about 12.7 million PCs infected with worm that stole data and spread via USB drives, MSN Messenger, and P2P networking.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/9572c05/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436136902/u/49/f/475521/c/32447/s/156707845/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436136902/u/49/f/475521/c/32447/s/156707845/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/ZldiihiAC1I\" height=\"1\" width=\"1\"/>";
Link[17] = "http://rss.feedsportal.com/c/32447/f/475521/s/9572c05/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4627180E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[17] = "20100303001006";

Title[18] = "Microsoft exec: Infected PCs should be quarantined (Q&A)";
Desc[18] = "Under Scott Charney\'s plan, ISPs would keep infected PCs off the Internet, much like doctors quarantine sick people and governments restrict smoking in public areas.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/956fd04/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436136089/u/49/f/475521/c/32447/s/156695812/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436136089/u/49/f/475521/c/32447/s/156695812/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/FbppypUt5KA\" height=\"1\" width=\"1\"/>";
Link[18] = "http://rss.feedsportal.com/c/32447/f/475521/s/956fd04/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4626490E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[18] = "20100302234251";

Title[19] = "Microsoft, Germans working on electronic ID card prototype";
Desc[19] = "Microsoft\'s Scott Charney says company\'s identity management system can give consumers the power to control where their data ends up.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/95626a2/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/63436120117/u/49/f/475521/c/32447/s/156640930/a2.htm\"><img src=\"http://da.feedsportal.com/r/63436120117/u/49/f/475521/c/32447/s/156640930/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/wb9UHFwzYLg\" height=\"1\" width=\"1\"/>";
Link[19] = "http://rss.feedsportal.com/c/32447/f/475521/s/95626a2/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E10A4622330E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[19] = "20100302182800";

} // end with block
