//Developed by Amanda Sharretts (InfoSec) and Andrew Martin (Junion Systems Engineer)
//Office Of Technology Services, 2006

var strList = new Array()
strList[0] = "59% of the middleclass use broadband."
strList[1] = "The average monthly cost for broadband DSL is $9 per month cheaper than cable."
strList[2] = "More than 600,000 laptop thefts occurred in 2003, totaling an estimated $720 million in <br>losses. (Safeware Insurance, 2003)"
strList[3] = "There were 600,000 laptop thefts reported in 2003, totaling an estimated $5.4 billion in theft of proprietary information. (Safeware Insurance, 2003)"
strList[4] = "According to Gartner, the chances of a laptop being stolen this year are 1 in 10. <br>(Gartner Group, 2002)"
strList[5] = "Gartner estimates approximately 80% of all laptop thefts are internal. (Gartner Group, 2002)"
strList[6] = "Theft ranks as a cause for overall PC loss. (Safeware Insurance, 2003)"
strList[7] = "Laptop theft has been attributed to 59% of computer attacks in government agencies, <br> corporations, and universities during 2003. (Baseline, 2004)"
strList[8] = "97% of stolen computers are never recovered. (FBI)"
strList[9] = "Nearly 40 percent of victims do not report computer intrusions. <br>(CSI/FBI Computer Crime and Security Survey, 2005)"
strList[10] = "Up to 700,000 people in the United States may be victimized by identity bandits each year, <br>according to the Justice Department."
strList[11] = "Every 79 seconds, a thief steals someone's identity, opens accounts in the victim's name and goes on a buying spree.  (CBSnews.com, 2001)"
strList[12] = "An updated and current anti-virus program on your PC can stop over 95 percent of all known viruses."
strList[13] = "99% of computer threats can be prevented using a properly configured firewall, intrusion <br>prevention, antivirus, anti-spyware, and anti-adware programs."
strList[14] = "Using wireless security at home will help prevent intruders from getting into your home computers."
strList[15] = "A computer Cracker is a paid hacker."
strList[16] = "Passwords using dictionary words are easier to crack than non-dictionary ones."


var NUMSTRINGS = strList.length

var rand
rand = parseInt(Math.random()*NUMSTRINGS)
document.write(strList[rand] + "<br>")
