
/*
 * -------
 * :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] = "Contest finds workers at big firms handing data to hackers";
Desc[0] = "Organizers of contest at hacking confab hope showing how easy it is to get data from cold calls to companies will help alert firms to the threat of social engineering.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c6d1bd9/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/78173866579/u/49/f/475521/c/32447/s/208477145/a2.htm\"><img src=\"http://da.feedsportal.com/r/78173866579/u/49/f/475521/c/32447/s/208477145/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/7L9nMHa2WN4\" height=\"1\" width=\"1\"/>";
Link[0] = "http://rss.feedsportal.com/c/32447/f/475521/s/c6d1bd9/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A12290A0E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[0] = "20100731175316";

Title[1] = "Tighter security coming in Firefox 4";
Desc[1] = "At Black Hat, a trio of security representatives from Mozilla detailed how the company plans to push the browser to be more secure for users while nudging developers toward safer coding practices.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c69d5d8/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788712446/u/49/f/475521/c/32447/s/208262616/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788712446/u/49/f/475521/c/32447/s/208262616/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/h_hf6lwnrhg\" height=\"1\" width=\"1\"/>";
Link[1] = "http://rss.feedsportal.com/c/32447/f/475521/s/c69d5d8/l/0Ldownload0Bcnet0N0C830A10E20A0A70I40E20A0A12280A0E120Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[1] = "20100731000301";

Title[2] = "Microsoft rushes fix for Windows shortcut hole";
Desc[2] = "Attackers exploiting a hole involving how Windows handles shortcut, or .lnk, files prompt Microsoft to rush out an emergency patch, well before its next scheduled Patch Tuesday.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c695be0/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788710480/u/49/f/475521/c/32447/s/208231392/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788710480/u/49/f/475521/c/32447/s/208231392/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/oVP1AtSOyDE\" height=\"1\" width=\"1\"/>";
Link[2] = "http://rss.feedsportal.com/c/32447/f/475521/s/c695be0/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A12270A0E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[2] = "20100730220112";

Title[3] = "Did Dell tech support display woman\'s naked pics?";
Desc[3] = "A woman calls Dell tech support to ask for help in locating pictures of herself on her computer. The pictures end up on a newly created Web site. She accuses the support representative of creating the site.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c695be1/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788710479/u/49/f/475521/c/32447/s/208231393/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788710479/u/49/f/475521/c/32447/s/208231393/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/SFZEx_RFoWc\" height=\"1\" width=\"1\"/>";
Link[3] = "http://rss.feedsportal.com/c/32447/f/475521/s/c695be1/l/0Lnews0Bcnet0N0C830A10E178520I30E20A0A12250A0E710Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[3] = "20100730204644";

Title[4] = "Did we pronounce privacy dead this week?";
Desc[4] = "Academics Jeff Jarvis and Danah Boyd, on stage at Supernova, can\'t pinpoint a solution to online privacy controversies, but agree misguided attempts to define privacy are part of the problem.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c695be2/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788710478/u/49/f/475521/c/32447/s/208231394/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788710478/u/49/f/475521/c/32447/s/208231394/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/qY42L6skK2M\" height=\"1\" width=\"1\"/>";
Link[4] = "http://rss.feedsportal.com/c/32447/f/475521/s/c695be2/l/0Lnews0Bcnet0N0C830A10E135770I30E20A0A122340E360Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[4] = "20100730180127";

Title[5] = "Report: Google, CIA fund predictive analytics firm";
Desc[5] = "Google Ventures and CIA\'s investment arm fund Recorded Future, a start-up that monitors Web and connects dots between people, places, events, Wired says.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c695be3/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788710477/u/49/f/475521/c/32447/s/208231395/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788710477/u/49/f/475521/c/32447/s/208231395/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/un0qgMMgWSE\" height=\"1\" width=\"1\"/>";
Link[5] = "http://rss.feedsportal.com/c/32447/f/475521/s/c695be3/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A122130E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[5] = "20100730172631";

Title[6] = "Black Hat shines light on security (roundup)";
Desc[6] = "Las Vegas is the setting this week for two of the most popular annual security events. First comes Black Hat for the professional crowd, followed by the more antic Defcon gathering.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c585650/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788814835/u/49/f/475521/c/32447/s/207115856/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788814835/u/49/f/475521/c/32447/s/207115856/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/uD2bpMoZPqo\" height=\"1\" width=\"1\"/>";
Link[6] = "http://rss.feedsportal.com/c/32447/f/475521/s/c585650/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E20A0A119380E830Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[6] = "20100729231100";

Title[7] = "Can your mobile calls be intercepted? This tool can tell";
Desc[7] = "Airprobe software, combined with hardware and crypto cracker tool allows people to test the snoop-factor of their GSM phones, and even intercept calls of others.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c695be4/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/Nfj8nyVBXLg\" height=\"1\" width=\"1\"/>";
Link[7] = "http://rss.feedsportal.com/c/32447/f/475521/s/c695be4/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A121440E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[7] = "20100729224434";

Title[8] = "U.S. military cyberwar: What\'s off-limits?";
Desc[8] = "Ex-NSA and CIA head tells Black Hat crowd that rules for when military can attack foreign networks might exempt power grids and financial networks.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c611667/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788914897/u/49/f/475521/c/32447/s/207689319/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788914897/u/49/f/475521/c/32447/s/207689319/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/vCSvCyEJC-4\" height=\"1\" width=\"1\"/>";
Link[8] = "http://rss.feedsportal.com/c/32447/f/475521/s/c611667/l/0Lnews0Bcnet0N0C830A10E319210I30E20A0A121210E2810Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[8] = "20100729204317";

Title[9] = "Searchable Facebook user data posted to Pirate Bay";
Desc[9] = "The names and Facebook profile Web addresses for 171 million accounts are scraped from the site and posted on file-sharing site Pirate Bay.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c60c6f0/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788611488/u/49/f/475521/c/32447/s/207668976/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788611488/u/49/f/475521/c/32447/s/207668976/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/TnSR8VYDMpA\" height=\"1\" width=\"1\"/>";
Link[9] = "http://rss.feedsportal.com/c/32447/f/475521/s/c60c6f0/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A121150E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[9] = "20100729192028";

Title[10] = "Expert: Critical system flaws a \'ticking time bomb\'";
Desc[10] = "Combining legacy SCADA systems that have their own weaknesses with Internet technologies is a dangerous mix for protecting systems that provide energy, water and other basic needs, Black Hat presenter says.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c59d670/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788828558/u/49/f/475521/c/32447/s/207214192/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788828558/u/49/f/475521/c/32447/s/207214192/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/Ye1oWb9dD5E\" height=\"1\" width=\"1\"/>";
Link[10] = "http://rss.feedsportal.com/c/32447/f/475521/s/c59d670/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A120A270E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[10] = "20100729024637";

Title[11] = "Security researcher demonstrates ATM hacking";
Desc[11] = "IOActive\'s Barnaby Jack reveals at Black Hat how he found ways to remotely log into ATMs without a password and force them to spit out cash.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c5953b1/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788825429/u/49/f/475521/c/32447/s/207180721/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788825429/u/49/f/475521/c/32447/s/207180721/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/K-02BznkQ5o\" height=\"1\" width=\"1\"/>";
Link[11] = "http://rss.feedsportal.com/c/32447/f/475521/s/c5953b1/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E20A0A120A190E830Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[11] = "20100729000435";

Title[12] = "DHS tries to defuse privacy criticism, asks for help";
Desc[12] = "At Black Hat, Homeland Security\'s second in command receives mixed response when trying to downplay privacy concerns, asks attendees for help.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c5896d2/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788522514/u/49/f/475521/c/32447/s/207132370/kg/67/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788522514/u/49/f/475521/c/32447/s/207132370/kg/67/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/PK70x9A60UA\" height=\"1\" width=\"1\"/>";
Link[12] = "http://rss.feedsportal.com/c/32447/f/475521/s/c5896d2/l/0Lnews0Bcnet0N0C830A10E319210I30E20A0A119860E2810Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[12] = "20100728202324";

Title[13] = "Adobe to follow Microsoft plan of sharing security info";
Desc[13] = "The company will begin sharing vulnerability information early with security vendors just as Microsoft does. Plus: a new toolkit from Redmond.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c5731b9/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788508027/u/49/f/475521/c/32447/s/207040953/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788508027/u/49/f/475521/c/32447/s/207040953/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/OR1RJWM2HFE\" height=\"1\" width=\"1\"/>";
Link[13] = "http://rss.feedsportal.com/c/32447/f/475521/s/c5731b9/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A118870E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[13] = "20100728160000";

Title[14] = "U.K.: Privacy abuse unlikely in Google Street View flap";
Desc[14] = "Information Commissioner\'s Office finds no \"meaningful personal details\" in the data collected in the Street View snapshots of Wi-Fi networks.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c56941c/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788500336/u/49/f/475521/c/32447/s/207000604/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788500336/u/49/f/475521/c/32447/s/207000604/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/tKvcMZsJnbA\" height=\"1\" width=\"1\"/>";
Link[14] = "http://rss.feedsportal.com/c/32447/f/475521/s/c56941c/l/0Lnews0Bcnet0N0C830A10E319210I30E20A0A119160E2810Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[14] = "20100728142100";

Title[15] = "Check counterfeiting using botnets and money mules";
Desc[15] = "SecureWorks uncovers bizarre criminal operation that uses digital techniques to aid in old-school check counterfeiting.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c5587f7/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788484155/u/49/f/475521/c/32447/s/206931959/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788484155/u/49/f/475521/c/32447/s/206931959/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/afPOLmZvFT0\" height=\"1\" width=\"1\"/>";
Link[15] = "http://rss.feedsportal.com/c/32447/f/475521/s/c5587f7/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A118850E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[15] = "20100728120000";

Title[16] = "Senators fail to agree on privacy approach";
Desc[16] = "During marathon hearing, politicians worry about everything from Facebook to peer-to-peer software, spam, NebuAd, cancer patients, and advertising, with no consensus on what to do next.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c54e40f/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788477328/u/49/f/475521/c/32447/s/206889999/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788477328/u/49/f/475521/c/32447/s/206889999/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/faf8zQNnhX8\" height=\"1\" width=\"1\"/>";
Link[16] = "http://rss.feedsportal.com/c/32447/f/475521/s/c54e40f/l/0Lnews0Bcnet0N0C830A10E319210I30E20A0A118840E2810Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[16] = "20100728110000";

Title[17] = "Report: Most data breaches tied to organized crime";
Desc[17] = "Verizon\'s annual data breach report combines data from the U.S. Secret Service and covers more than 143 million compromised records.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c51d3ac/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788438004/u/49/f/475521/c/32447/s/206689196/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788438004/u/49/f/475521/c/32447/s/206689196/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/4SZC8okxkcQ\" height=\"1\" width=\"1\"/>";
Link[17] = "http://rss.feedsportal.com/c/32447/f/475521/s/c51d3ac/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A118710E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[17] = "20100728040100";

Title[18] = "Tabs get tweaked in Firefox 4 beta 2";
Desc[18] = "Firefox 4 beta 2 continues Mozilla\'s push to release new features and under-the-hood improvements to beta testers faster.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c5087f2/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788428319/u/49/f/475521/c/32447/s/206604274/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788428319/u/49/f/475521/c/32447/s/206604274/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/ZTFRPxPMnOE\" height=\"1\" width=\"1\"/>";
Link[18] = "http://rss.feedsportal.com/c/32447/f/475521/s/c5087f2/l/0Ldownload0Bcnet0N0C830A10E20A0A70I40E20A0A118540E120Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[18] = "20100727213400";

Title[19] = "Juniper Networks to acquire SMobile Systems";
Desc[19] = "Acquisition price for mobile security provider SMobile is about $70 million in cash, companies say.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/c5082b6/mf.gif\' border=\'0\'/><br/><br/><a href=\"http://da.feedsportal.com/r/77788427883/u/49/f/475521/c/32447/s/206602934/kg/68/a2.htm\"><img src=\"http://da.feedsportal.com/r/77788427883/u/49/f/475521/c/32447/s/206602934/kg/68/a2.img\" border=\"0\"/></a><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/YX-Qp-gRxAw\" height=\"1\" width=\"1\"/>";
Link[19] = "http://rss.feedsportal.com/c/32447/f/475521/s/c5082b6/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E20A0A118520E2450Bhtml0Dpart0Frss0Gamp0Psubj0Fnews0Gamp0Ptag0F25470E10I30E0A0E20A/story01.htm";
DateN[19] = "20100727210959";

} // end with block
