textArray = new Array("<i>We see the world by authoring it</i> - Michael Holquist",
"<i>The subtlety of nature is greater many times over than the subtlety of argument</i> - Francis Bacon",
"<i>It is just when ideas are lacking that a phrase is most welcome</i> - Goethe",
"<i>We are within language as within our body</i> - Jean-Paul Sartre",
"<i>Separate the word from the body - that is death</i> - Navajo woman",
"<i>The &quot;real world&quot; is to a large extent unconsciously built up on the language habits of the group</i> - Edward Sapir",
"<i>We see with our language</i> - Neil Postman & Charles Weingartner",
"<i>Every language is a special way of looking at the world and interpreting experience</i> - Clyde Kluckhohn",
"<i>When they turned back to the page before, it had the same words on it</i> - Isaac Asimov",
"<i>We dissect nature along lines laid down by our native languages</i> - Benjamin Lee Whorf",
"<i>It is impossible to say the same thing in two (or more) different ways</i> - Stanley Fish",
"<i>Language seems to use us as much as we use it</i> - John O'Neill",
"<i>Only those ideas which least belong to us can be adequately expressed in words</i> - Henri Bergson",
"<i>Writing has transformed human consciousness</i> - Walter Ong",
"<i>The different media of writing and speaking bring different devices and perceptions into play</i> - Walter Nash",
"<i>How do I know what I think until I see what I say?</i> - Graham Wallas",
"<i>Writing... serves to distance the knower and the known</i> - Walter Ong",
"<i>Take care of the sense, and the sounds will take care of themselves</i> - Lewis Carroll",
"<i>Metaphor plays a very significant role in determining what is real for us</i> - George Lakoff & Mark Johnson",
"<i>The second part of the history of the world and the arts begins with the invention of printing</i> - Goethe",
"<i>One has to &quot;cut out&quot; pieces of &quot;reality&quot; to make it fit the way our verbal language operates</i> - Stephen Heath",
"<i>I seem to be a verb</i> - Buckminster Fuller",
"<i>Words... represent categorizations of the world from a point of view</i> - Gunther Kress",
"<i>Language disguises thought</i> - Ludwig Wittgenstein",
"<i>Language is not simply a reporting device for experience but a defining framework for it</i> - Benjamin Lee Whorf",
"<i>The world is as many things as there are ways to describe it</i> - Nelson Goodman",
"<i>We know more than we can tell</i> - Michael Polanyi",
"<i>Information which is coded within one mode [of symbolic expression] will not be capable of being fully recoded within another</i> - Larry Gross",
"<i>Symbolic communication is always an impoverished translation</i> - Larry Gross",
"<i>Symbolic codes govern our structuring of reality</i> - Larry Gross",
"<i>We read unconsciously into the world the structure of the language we use</i> - Alfred Korzybski",
"<i>The map is not the territory</i> - Alfred Korzybski",
"<i>There is no such thing as experience outside of embodiment in signs</i> - Valentin Volosinov",
"<i>Hypertext is more significant to society than the invention of the printing press and the alphabet</i> - James Burke",
"<i>I am firm, you are obstinate, he is pigheaded</i> - Bertrand Russell",
"<i>It is the world of words that creates the world of things</i> - Jacques Lacan",
"<i>When telling a true story, one should not be overinfluenced by the haphazard occurrences of reality</i> - H B G Casimir",
"<i>We each use stories as a way of creating, maintaining, and refining our identity</i> - Jonathan E Schroeder",
"<i>Texts do not merely reflect social reality but create it</i> - Lee Patterson",
"<i>The very structure of knowledge was altered by the attempts to represent the world on paper</i> - David Olson");

function getrandom(maxValue)
{
rnumber = Math.round(Math.random()*(maxValue-1))+1
return rnumber
}

choice = getrandom(textArray.length - 1);
document.write("<font color='#0053c4' size='1' face='Verdana, Arial, Helvetica, sans-serif'>" + textArray[choice] + "</font>");