
/*
 * -------
 * :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] = "20120203233331";
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] = "Anti-SOPA forces have ISP snooping bill in their crosshairs";
Desc[0] = "An Internet outcry forced Rep. Lamar Smith to delay a vote on SOPA. Opponents of Smith\'s ISP snooping bill are hoping they can repeat the process.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c62d96a/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/Rx_clqTDXXE\" height=\"1\" width=\"1\"/>";
Link[0] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c62d96a/l/0Lnews0Bcnet0N0C830A10E319210I30E573714260E2810Canti0Esopa0Eforces0Ehave0Eisp0Esnooping0Ebill0Ein0Etheir0Ecrosshairs0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[0] = "20120203221834";

Title[1] = "EU officials want Google to suspend privacy policy change";
Desc[1] = "Despite request, Google tells concerned European Union advisers that it will stick to its March 1 date for privacy policy modifications.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c62ab39/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/iWj-oydsXzQ\" height=\"1\" width=\"1\"/>";
Link[1] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c62ab39/l/0Lnews0Bcnet0N0C830A10E319210I30E573713670E2810Ceu0Eofficials0Ewant0Egoogle0Eto0Esuspend0Eprivacy0Epolicy0Echange0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[1] = "20120203205150";

Title[2] = "Anonymous hacks lawyers for Marine accused of Iraq massacre";
Desc[2] = "Hackers follow release of recording of FBI call on Anonymous with attack on lawyers in an Iraq massacre case.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c6267e2/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/6QPp4ogPXMY\" height=\"1\" width=\"1\"/>";
Link[2] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c6267e2/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E5737130A90E2450Canonymous0Ehacks0Elawyers0Efor0Emarine0Eaccused0Eof0Eiraq0Emassacre0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[2] = "20120203194925";

Title[3] = "Facebook users polled \'unlike\' new Timeline feature";
Desc[3] = "A whopping 70 percent of Facebook users surveyed by SodaHead voted thumbs down on the social network\'s now mandatory Timeline feature.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c61f84c/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/v93by1_LtsU\" height=\"1\" width=\"1\"/>";
Link[3] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c61f84c/l/0Lnews0Bcnet0N0C830A10E10A230I30E573712190E930Cfacebook0Eusers0Epolled0Eunlike0Enew0Etimeline0Efeature0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[3] = "20120203173042";

Title[4] = "Google\'s response on new privacy policy ticks off congresswoman";
Desc[4] = "At a hearing in the House over the search giant\'s new privacy policy, subcommittee Chairwoman Mary Bono Mack expresses frustration over what she sees as Google\'s lack of clarity in answering questions.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c61cf68/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/PVfitz8_eSo\" height=\"1\" width=\"1\"/>";
Link[4] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c61cf68/l/0Lnews0Bcnet0N0C830A10E135780I30E573711650E380Cgoogles0Eresponse0Eon0Enew0Eprivacy0Epolicy0Eticks0Eoff0Econgresswoman0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[4] = "20120203162959";

Title[5] = "Google\'s response on new privacy policy ticks off Congress";
Desc[5] = "At a hearing in the House over the search giant\'s new privacy policy, subcommittee Chairwoman Mary Bono Mack expresses frustration over what she sees as Google\'s lack of clarity in answering questions.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c611cda/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/AND16PJsXxk\" height=\"1\" width=\"1\"/>";
Link[5] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c611cda/l/0Lnews0Bcnet0N0C830A10E135780I30E573711650E380Cgoogles0Eresponse0Eon0Enew0Eprivacy0Epolicy0Eticks0Eoff0Econgress0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[5] = "20120203162959";

Title[6] = "Anonymous claims to have snooped FBI cybercrime call";
Desc[6] = "Activist groups record call apparently between U.S. and U.K. law enforcement officials over cybercrime cases and individuals.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c612a57/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/kR6-NgxyzIM\" height=\"1\" width=\"1\"/>";
Link[6] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c612a57/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E573711460E830Canonymous0Eclaims0Eto0Ehave0Esnooped0Efbi0Ecybercrime0Ecall0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[6] = "20120203161142";

Title[7] = "Anonymous: We snooped an FBI cybercrime call";
Desc[7] = "Hacktivist group says it recorded a call apparently between U.S. and U.K. law enforcement officials over cybercrime cases and individuals.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c611cdb/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/r6f_pFSZAHg\" height=\"1\" width=\"1\"/>";
Link[7] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c611cdb/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E573711460E830Canonymous0Ewe0Esnooped0Ean0Efbi0Ecybercrime0Ecall0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[7] = "20120203161142";

Title[8] = "Mystery and mayhem surrounding MegaUpload (roundup)";
Desc[8] = "Hackers down government and entertainment Web sites after piracy arrest of people including Kim DotCom connected with the hosting site.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1bfb6694/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/DI6qAbfeYM0\" height=\"1\" width=\"1\"/>";
Link[8] = "http://rss.feedsportal.com/c/32447/f/475521/s/1bfb6694/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E573625150E830Cmystery0Eand0Emayhem0Esurrounding0Emegaupload0Eroundup0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[8] = "20120203112200";

Title[9] = "Kelihos botnet makes a comeback";
Desc[9] = "New variants resurrect the malware four months after Microsoft and Kaspersky Lab took down the original, which was capable of sending nearly 4 billion spam e-mails each day.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5d220a/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/cZOlokcwil8\" height=\"1\" width=\"1\"/>";
Link[9] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5d220a/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E57370A9260E830Ckelihos0Ebotnet0Emakes0Ea0Ecomeback0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[9] = "20120203045003";

Title[10] = "Feds seize illegal sports-streaming sites";
Desc[10] = "Just in time for Super Bowl Sunday, the federal agents announce they have seized and shuttered 307 Web sites that either live-streamed sports or sold fake NFL paraphernalia.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5cbac4/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/62bAwruqgEU\" height=\"1\" width=\"1\"/>";
Link[10] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5cbac4/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E57370A9120E830Cfeds0Eseize0Eillegal0Esports0Estreaming0Esites0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[10] = "20120203032235";

Title[11] = "Teen finds bugs in Google, Facebook, Apple, Microsoft code";
Desc[11] = "Bug hunter credited with finding bugs in software from big tech firms is Norwegian teen.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5c01c4/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/ebHIrR2xbQU\" height=\"1\" width=\"1\"/>";
Link[11] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5c01c4/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E573699710E2450Cteen0Efinds0Ebugs0Ein0Egoogle0Efacebook0Eapple0Emicrosoft0Ecode0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[11] = "20120202225343";

Title[12] = "How to identify fake Facebook accounts";
Desc[12] = "Barracuda Networks releases a study that helps identify fake Facebook accounts.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5bc3b4/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/3YBXXbOJBQs\" height=\"1\" width=\"1\"/>";
Link[12] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5bc3b4/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E57370A710A0E2450Chow0Eto0Eidentify0Efake0Efacebook0Eaccounts0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[12] = "20120202224126";

Title[13] = "Security concerns on Apple\'s FileVault decryption via FireWire";
Desc[13] = "Since the news of Passware being able to decrypt FileVault over FireWire connections, Mac users might be concerned about the integrity of the security on their computers.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5b6110/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/HRrV2fvfhm4\" height=\"1\" width=\"1\"/>";
Link[13] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5b6110/l/0Lreviews0Bcnet0N0C830A10E137270I70E57370A6280E2630Csecurity0Econcerns0Eon0Eapples0Efilevault0Edecryption0Evia0Efirewire0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[13] = "20120202203335";

Title[14] = "Google now scanning Android apps for malware";
Desc[14] = "New service scans apps for malicious code or behavior and bounces them if they are suspect.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5b6111/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/Ixaw2lC8IUY\" height=\"1\" width=\"1\"/>";
Link[14] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5b6111/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E57370A650A0E2450Cgoogle0Enow0Escanning0Eandroid0Eapps0Efor0Emalware0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[14] = "20120202203002";

Title[15] = "Hackers stole data from VeriSign in 2010";
Desc[15] = "VeriSign discloses in quarterly SEC filing that hackers stole data in successful attacks, but doesn\'t say what data was stolen.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5b12e4/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/MOxcqBu1FBQ\" height=\"1\" width=\"1\"/>";
Link[15] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5b12e4/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E57370A5880E2450Chackers0Estole0Edata0Efrom0Everisign0Ein0E20A10A0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[15] = "20120202190045";

Title[16] = "HTC patching Wi-Fi password leak on several smartphones";
Desc[16] = "Certain HTC smartphones may expose Wi-Fi passwords due to a bug. The company is addressing the problem through a regular update and a manual patch.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c59a417/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/Xpvtiq5zhrI\" height=\"1\" width=\"1\"/>";
Link[16] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c59a417/l/0Lnews0Bcnet0N0C830A10E10A0A90I30E57370A230A0E830Chtc0Epatching0Ewi0Efi0Epassword0Eleak0Eon0Eseveral0Esmartphones0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[16] = "20120202132716";

Title[17] = "Cocoon now sheathes you in IE, too";
Desc[17] = "Cocoon extends its protective casing for you and your Internet habits to Internet Explorer users in a new beta. Along with IP address masking and anonymous browsing, you get secure Wi-Fi, e-mail on-the-fly, and antivirus scanning.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c597166/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/hkSHFrZdpN4\" height=\"1\" width=\"1\"/>";
Link[17] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c597166/l/0Ldownload0Bcnet0N0C830A10E20A0A70I40E57370A0A930E120Ccocoon0Enow0Esheathes0Eyou0Ein0Eie0Etoo0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[17] = "20120202130000";

Title[18] = "FileVault 2 easily decrypted, warns Passware";
Desc[18] = "Apple\'s FileVault 2 whole-disk encryption can be unencrypted within an hour, according to encryption and password-recovery company Passware.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5546cd/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/6zEEG6vXGbg\" height=\"1\" width=\"1\"/>";
Link[18] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5546cd/l/0Lreviews0Bcnet0N0C830A10E137270I70E573699830E2630Cfilevault0E20Eeasily0Edecrypted0Ewarns0Epassware0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[18] = "20120202005355";

Title[19] = "Dubious Android apps may not be malware--just ads";
Desc[19] = "Verizon-affiliated ICSA Labs steps into the controversy over Android apps that Symantec identified as malware.<img width=\'1\' height=\'1\' src=\'http://rss.feedsportal.com/c/32447/f/475521/s/1c5437ce/mf.gif\' border=\'0\'/><img src=\"http://feeds.feedburner.com/~r/CNETNewsSecurity/~4/jd6Eph9oIeM\" height=\"1\" width=\"1\"/>";
Link[19] = "http://rss.feedsportal.com/c/32447/f/475521/s/1c5437ce/l/0Lnews0Bcnet0N0C830A10E270A80A0I30E573698520E2450Cdubious0Eandroid0Eapps0Emay0Enot0Ebe0Emalware0Ejust0Eads0C0Dpart0Frss0Gsubj0Fnews0Gtag0F25470E10I30E0A0E20A/story01.htm";
DateN[19] = "20120201212114";

} // end with block

