var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember ?
// to increment the Quotation[x] index!
 Quotation[0] = "More and more college students are unable to control the amount of time they spend online. They are being called 'Internet vampires' because they emerge from computer laboratories often at dawn after dwelling a night on the Internet realm.";
 Quotation[1] = "ABC news conducted a study that found that nearly 11 million users suffer from some type of internet addiction. 30% are found using the internet as a form of escape from everyday problems.";
 Quotation[2] = "The first survey on internet use by Georgia Tech University in 1994 found only 6% of internet users were female, and with the ninth survey, conducted in April 1998, the proportion of female users have increased to 38.7%";
 Quotation[3] = "The National Organisation of Police Officers(NOPO) reports that violent crimes has decreased by 14.2% in America since 1995 but more felons now stay at home and switch to cybercrimes instead.";
 Quotation[4] = "There has been an alarming increase in number of college students failing courses because they would not take time off from Internet use to attend classes.";
 Quotation[5] = "Research shows that addicts are spending increasing amounts of time online while denying it and hiding the truth of their activities online.";
 Quotation[6] = "Treatments for IAD may include 'cold turkeys', counseling, physical activity, antidepressants, and enforcement of strict regular sleeping patterns.";
 Quotation[7] = "30% of Internet users admit to using the Net to better their moods and to relieve negative mood states. In other words, the internet has became their outlet of frustrations, very much similar to how drug addicts rely on drugs to 'free' themselves from their daily troubles.";
 Quotation[8] = "Researchers are comparing the Internets effects to marijuana as a psycho-stimulant. They argue that the chemicals in marijuana activate the same stimuli as the Internet.";
 Quotation[9] = "Generally addicted users are likely to use the Internet anywhere from 40 to 80 hours per week, with single sessions stretching up to 20 hours.";
 Quotation[10]= "In 2001, 60.7% of employees surveyed said they visit Web sites or surf for personal use while at work, up from 50.7% in 2000.";
 Quotation[11]= "62% of Internet addicts regularly logged on to pornography sites, and reported experiencing sexual arousal 'sometimes' while online.";
 Quotation[12]= "Some studies suggest that people with addictive personalities are more likely to suffer IAD, instead of IAD generating addictions entirely by itself.";


// ======================================
// Do not change anything below this line
// ======================================

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
if ((whichQuotation<0) || (whichQuotation>50)) {whichQuotation=2};
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();