/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 21;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Bruce Schneier - Security Guru, Author of 'Secrets and Lies'";
body="More people are killed every year by pigs than by sharks, which shows you how good we are at evaluating risk." ;
}

if (quotes==1) {
title="CIO Magazine";
body="Data is a valuable corporate asset and should be managed as such, like cash, facilities or any other corporate asset";
}

if (quotes==2) {
title="TechRepublic Inc, Laraine Lawson";
body="The average amount of revenue lost for all companies in one hour of an IT infrastructure outage is $42,074, and that doesn't include lost productivity";
}

if (quotes==3) {
title="Pepperdine University Study";
body="6% of all PCs will suffer an episode of data loss in any given year, requiring specialized data recovery services";
}

if (quotes==4) {
title="Strategic Resource Corporation";
body="On average, 40% of vital enterprise data resides on servers, the other 60% sits on 500 million OCS and laptops";
}

if (quotes==5) {
title="PC World";
body="83% of the survey group said they use an antivirus application, only 73 % update their definition files regularly";
}
if (quotes==6) {
title="Doug Tygar, Professor of Comuter Science and Information Management at UC Berkeley";
body="You can't consider the problem of defense without first understanding the problem of attack.";
}
if (quotes==7) {
title="Gosser";
body="Securing a computer system has traditionally been a battle of wits: the penetrator tries to find the holes, and the designer tries to close them.";
}
if (quotes==8) {
title="Mitch Ratliff - Journalist, Media Executive";
body="A computer lets you make mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila.";
}
if (quotes==9) {
title="White House Cyber Security Advisor, Richard Clarke";
body="If you spen more on coffee than on IT security, you will be hacked. What's more, you deserve to be hacked.";
}
if (quotes==10) {
title="Benjamin Franklin";
body="The man who trades freedom for security does not deserve nor will he ever receive either.";
}
if (quotes==11) {
title="Dan Erwin, Security Officer, Dow Chemical Co.";
body="The best way to get management excited about a disaster plan is to burn down the building across the street.";
}
if (quotes==12) {
title="Alice Kahn";
body="For a list of all the ways technology has failed to improve the quality of life, please press three.";
}
if (quotes==13) {
title="Laurent Gasser";
body="Computers do not solve problems, they execute solutions.";
}
if (quotes==14) {
title="Bill Gates";
body="Information technology and business are becoming inextricably interwoven. I don't think anybody can talk meaningfully about one without talking about the other.";
}
if (quotes==15) {
title="Rupert Murdoch";
body="The world is changing very fast. Big will not beat small anymore. It will be the fast beating the slow.";
}
if (quotes==16) {
title="Andrew Grove, Founder of Intel Corporation";
body="Not all problems have a technological answer, but when they do, that is the more lasting solution.";
}
if (quotes==17) {
title="Carlos Slim Helu, Richest man in Mexico";
body="The key is the Internet. The United States is by far the most advanced country in this new digital culture, so we have to be there. The internet is the heart of this new civilization, and telecommunications are the nervous  system, or circulatory system.";
}
if (quotes==18) {
title="Pierre Omidyar - Founder of e-Bay";
body="We have technology, finally, that for the first time in  human history allows people to really maintain rich connections with much larger numbers of people.";
}
if (quotes==19) {
title="Eric Schmidt - CEO Google Corporation";
body="Technology is always evolving, and companies.. not just search companies.. can't be afraid to take advantage of change.";
}
if (quotes==20) {
title="Steve Ballmer - CEO of Microsoft Corporation";
body="The number one benefit of information technology is that it empowers people to do what they want to do. It lets people be creative. It lets people be productive. It lets people learn all the things they didn't think they could learn before, and so in a sense it's all about potential.";
}
if (quotes==21) {
title="Carl Sagen";
body="We live in a society exquisitely dependent on science and technology, in which hardly anyone knows anything about science and technology.";
}
document.write('<div align=left>');

document.write(''+ body +'<br>');
document.write('<strong>--' + title + '</strong>');
document.write('</div>');
