<!------------------------------------- Beginning Disappearing Act -----------------------------
// Kind of sort of a container for Quotes
quotes = new Array(37);
quotes[0] = "60% IT and Network Managers U.K. concerned that not enough is being invested access control or risk management." ;
quotes[1] = "3 years or 250,000 is the price for identity theft under U.S. federal law." ;
quotes[2] = "The estimated number of apps affected by Y2K bug is 36 million of which 80% will be fixed in time. - I.E.E.E. Spectrum" ;
quotes[3] = "Over 40% of all email servers are insecure of tested 16,000 in Europe and Japan. - NTA Monitor";
quotes[4] = "1,900 is the approximate number of websites with tips, tools, scripts, related to hacking. - IBM";
quotes[5] = "It is estimated that 82% of organizations are using firewalls. 23% are using Intruder Detection Systems. - Cahners";
quotes[6] = "Adaptive Security Management Market will be 679 Million U.S.D. by 2002. - The Yankee Group";
quotes[7] = "60% of CIOs say they monitor corporate Internet, email, and fax usage. - Tally Systems Corp.";
quotes[8] = "40% of the companies doing business on Internet have not synced web offerings to other distribution channels.";
quotes[9] = "It is estimated that $150.00 is absorbed in the cost of laptops for every box. - ComputerWorld";
quotes[10] = "In 1998 Approximately 54% of all financial institutions were offering online services.";
quotes[11] = "In 1998 6% of bank customers are now banking online.";
quotes[12] = "It is estimated that $954M will be spent by companies in 2002 to build a online presence. - IDC";
quotes[13] = "In 1997 64% of all U.S. corporations, government, banks, and universities had a security breech.";
quotes[14] = "Total loss from a security breech in 1998 was $136M of over 500 companies surveyed.";
quotes[15] = "40% of Fortune 1000 companies spend less than $1M per annum on security.";
quotes[16] = "Approximately 50% of security budgets are spent on Firewalls.";
quotes[17] = "$75B is the estimated revenues generated by e-commerce in 1998.";
quotes[18] = "Project revenues for e-commerce in 2001 is $1.2 Trillion.";
quotes[19] = "Approximately 43% of companies plan to invest into digital certificates and encryption by 2000.";
quotes[20] = "$3B is the amount requested from the U.S. and NATO to make Russia's nuclear weapon systems Y2K compliant. - AP";
quotes[21] = "7.3 B is the total number of emails sent daily in the U.S. of which 90% is spam. - eMarketer";
quotes[22] = "Approximately $220B will be spent on Web Commerce in 2001. - International Data Corp";
quotes[23] = "The 1998 Annual Growth rate of Internet traffic is 700%. - U.S. Dept. of Commerce";
quotes[24] = "45% of surveyed U.S. workers admitted to 'ethical abuse' at work. - Ethics Officer Association";
quotes[25] = "It is estimated that $1.6B will be spent on UNIX and Windows Security products by 2001. - International Data Corp.";
quotes[26] = "43% of those companies surveyed are using mirroring as a record backup methodology. - Contingency Planning & Management";
quotes[27] = "The projected market for network and systems management apps will be $19.4B by 2000. - Business Research Group";
quotes[28] = "39% of all secondary and primary schools use internet filtering software in student computers. - Quality Education Data";
quotes[29] = "Janet Reno spent $1M in Operation 'Get Cracking' to have some 16 crackers the Justice Dept. networks. - Business Week";
quotes[30] = "About 54% of all Internet Shoppers feel comfortable using their credit cards over the Internet. - BMRB, Internet Monitor";
quotes[31] = "There were 11 Mac specific viruses discovered in the wild in June 1998 include the first polymorphic. - Symantac Corp.";
quotes[32] = "There was a 143% increase in global firewall sales between 1996 and 1997. - International Data Corp.";
quotes[33] = "The amount of cold hard cash to be put into circulation due to the Y2K crisis is $50 Billion. - AP";
quotes[34] = "National Consumers League received 7,752 complaints in 1998 up nearly 600 % since 1997. - Internet Fraud Watch";
quotes[35] = "The U.S. Customs Service dumped 45,000 requests due to a hardware failure requiring systems shutdown. - Wall Street Journal";
quotes[36] = "70 % of all IT companies consider Security 'Mission Critical' whereas 6.6% considered it 'Unimportant'. - Meta Group";
quotes[37] = "The Average amount that surveyed companies targeted for this year in Security was $2.8 Million. - Meta Group";
quotes[38] = "Projected Internet Commerce sales as of 2003 is $ 3.2 Trillion. - Forrester Research";
//find a random number and push it into motd
motd = Math.floor(Math.random( ) * quotes.length);

//print to screen the random quote
document.write("<H3>" + "<FONT FACE=COMIC SANS MS, ARAIL, HELVETICA, COURIER SIZE=-2>" + " \"" +quotes[motd] +" \"\n"+"</FONT>"+"</H3>");

//--------------------------------------- Begin Reappearing Act ------------------------------------>
