/**		quotable.js  - Cybercrime : Piercing the darkness */

<!-- Begin

var quotes = new Array();
var sources = new Array();

quotes[0] = "As reports of seven-figure fraud cases, stock-manipulation schemes and rampant electronic trespassing proliferate, so does the media's fascination with the hacker mystique. Tales of digital fire-starters-seemingly able to burn down even the most elaborate virtual fortress-capture the attention of a global audience. We can't help but wonder: Are the arsonists truly more talented than the firefighters?";
sources[0] = 'Greg Shipley, Secure To the Core';

quotes[1] = "A premeditated and politically motivated cyber attack could make physical terrorist attacks look diminutive by comparison. For example, seizing air traffic control system computers or banking operating systems would place a cyberciminal in a position to do extensive damage.";
sources[1] = 'James Adams, The Next World War';

quotes[2] = "As any data defender in a large enterprise will tell you, it's a lot easier to attack than it is to defend. Intruders need find only one chink in the armor, while protectors need to outfit all their assets with armor while battling restrictive budgets, limited resources, nebulous perimeters, open systems and an onslaught of ongoing technical vulnerabilities.";
sources[2] = 'Greg Shipley, Secure To the Core';

quotes[3] = "Technology is destructive only in the hands of people who do not realize that they are one and the same process as the universe.";
sources[3] = 'Alan Watts, a philosopher, writer, speaker, and religious expert';

quotes[4] = "In Cyberspace, the First Amendment is a local ordinance.";
sources[4] = 'John Perry Barlow, vice-chairman of the Electronic Frontier Foundation\’s board of directors';

quotes[5] = "The Internet is so big, so powerful and pointless that for some people it is a complete substitute for life.";
sources[5] = 'Andrew Brown';

quotes[6] = "Encryption ... is a powerful defensive weapon for free people. It offers a technical guarantee of privacy, regardless of who is running the government... It's hard to think of a more powerful, less dangerous tool for liberty.";
sources[6] = 'Esther Dyson, CNET Networks';

quotes[7] = "The Internet is like a giant jellyfish. You can't step on it. You can't go around it. You've got to get through it.";
sources[7] = 'John Evans';

quotes[8] = "What's sort of interesting about the whole public relations disaster that is the Net, in some ways, is that the fundamentals are really good.";
sources[8] = 'Meg Whitman, President and CEO eBay';

quotes[9] = "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs.";
sources[9] = 'Joseph Weizenbaum, Professor at MIT';

quotes[10] = "It [the computer] is the first metamedium, and as such it has degrees of freedom for representation and expression never before encountered and as yet barely investigated.";
sources[10] = 'Alan Kay, president of the Viewpoints Research Institute';

quotes[11] = "I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We've created life in our own image.";
sources[11] = 'Stephen W. Hawking, British theoretical physicist';

quotes[12] = "Congress will pass a law restricting public comment on the Internet to individuals who have spent a minimum of one hour actually accomplishing a specific task while on line.";
sources[12] = 'Andy Grove, co-founder and chairman of Intel Corporation';

quotes[13] = "The Internet is not just one thing; it's a collection of things - of numerous communications networks that all speak the same digital language.";
sources[13] = 'Jim Clark, co-founder, Netscape Communications';

quotes[14] = "If builders built houses the way programmers built programs, the first woodpecker to come along would destroy civilization.";
sources[14] = 'Gerald Weinberg, author of The Psychology Of Computer Programming';

quotes[15] = 'The ultimate "computer," our own brain, uses only ten watts of power -- one-tenth the energy consumed by a hundred-watt bulb.';
sources[15] = 'Paul Valery, French author and poet of the Symbolist school';

quotes[16] = "Man is the best computer we can put aboard a spacecraft ... and the only one that can be mass produced with unskilled labor.";
sources[16] = 'Werner von Braun, a leading figure in the development of rocket technology';

quotes[17] = "Computing is not about computers any more. It is about living.";
sources[17] = "Nicholas Negroponte, founder and director of Massachusetts Institute of Technology's Media Lab.";

quotes[18] = "To err is human - and to blame it on a computer is even more so.";
sources[18] = 'Robert Orben, American magician and professional comedy writer';

quotes[19] = "They have computers, and they may have other weapons of mass destruction.";
sources[19] = 'Janet Reno, 78th Attorney General of the United States (1993-2001)';

quotes[20] = "Treat your password like your toothbrush. Don't let anybody else use it, and get a new one every six months.";
sources[20] = "Clifford Stoll, author of the books, The Cuckoo's Egg and Silicon Snake Oil.";

quotes[21] = "Personally, I rather look forward to a computer program winning the world chess championship. Humanity needs a lesson in humility.";
sources[21] = 'Richard Dawkins, University of Oxford';

quotes[22] = "The internet represents a potential Achilles heel for our financial stability and physical security if the networks we are creating are not protected.";
sources[22] = 'George Tenet, former CIA director';

quotes[23] = "Attacks today are clearly motivated by profit. Historically they were motivated by an individual looking for bragging rights or notoriety.";
sources[23] = "Michael Murphy, Symantec\'s general manager for Canada.";


function quotable()
{
	var index = Math.floor(Math.random() * quotes.length);
	document.write("<div class=\"quotable\">" + "\"" + quotes[index] + "\""+ "<br /><br /><strong>" + sources[index] + '</strong></div>');
}

// End-->
