// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

Quotation[0] = "&#8220;Even identical twins have different fingerprints. Each individual person has their own individual fingerprints on each individual finger&#8221;";
Quotation[1] = "&#8220;Health care institutions are a prime target for hackers as they offer a &#8220;golden combination&#8221; of names, social insurance numbers and birth dates&#8221; <br /><b>www.JBM.net</b>";
Quotation[2] = "&#8220;The average citizen is now more likely to be a victim of crime through the Internet than on a street or in their homes&#8221; <br /><b>www.JBM.net</b>";
Quotation[3] = "&#8220;Electronic commerce is forecast to be a 75 billion dollar industry this year &#8211; and is ripe for the picking by criminals around the globe.&#8221; <br /><b>Sheri Zackerforce, Calgary Herald</b>";
Quotation[4] = "&#8220;There are approximately 10 million victims of Identity Theft per year. That means 17 become new victims of this crime every minute.&#8221; <br /><b>www.iiidentity.com</b>";
Quotation[5] = "Reviewing your credit report every six months is one of the most effective ways to determine if the security of your identity has been compromised.";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
