function dyk() {
var ar = new Array()
ar[0] = "Soap Operas are so called because they were originally used to advertise soap powder. In America in the early days of TV, advertisers would write stories around the use of their soap powder."
ar[1] = "Viewers respond to advertisements under red lighting 12% faster than usual."
ar[2] = "In 1984, when Michael Jackson was on American TV advertising Pepsi, his commercials were included in the TV listings and often attracted a larger audience than the programmes they interrupted."
ar[3] = "In ancient Rome, advertisements were used to promote Gladiator matches."
ar[4] = "Athletic shoe industry leader Nike spent an estimated $120 million on advertising in 1994. Number two Reebok spent $70 million."
ar[5] = "The first newspaper began in England in 1620 and the first advertisement is said to be one for the return of a stolen horse."
ar[6] = "In 1843, the first advertising agency was established by Volney Palmer in Philadelphia."
ar[7] = "The average person sees more than 20,000 TV commercials in a year."
ar[8] = "In the Province of Quebec it is illegal to display advertisements in English."
ar[9] = "This first advertisement in Canada was an offer of butter for sale that appeared in 1752 in an official government publication, The Halifax Gazette."


var ry=Math.floor(Math.random()*ar.length)
if (ry==0)
ry=1
document.write(ar[ry])
}
dyk()