function quote() {

var mytext = new Array();

mytext[0] = '<i>\"Culture and education have no bounds or limits\; now man is in a phase in which he must decide for himself how far he can proceed in the culture that belongs to the whole of humanity.\"</i><br><br><div align=right>  Dr Maria Montessori </div>';
mytext[1] = '<i>\"An interesting piece of work, freely chosen, which has the virtue of inducing concentration rather than fatigue, adds to the child\'s energies and mental capacities, and leads him to self-mastery.\"</i><br><br><div align=right>  Dr Maria Montessori </div>';
mytext[2] = '<i>\"The teacher, when she begins work in our schools, must have a kind of faith that the child will reveal himself through work. She must free herself from all preconceived ideas concerning the levels at which the children may be.\"</i><br><br><div align=right>  Dr Maria Montessori </div>';
mytext[3] = '<i>\"As soon as children find something that interests them they lose their instability and learn to concentrate.\"</i><br><br><div align=right>  Dr Maria Montessori </div>';
mytext[4] = '<i>\"We must help the child to act for himself, will for himself, think for himself; this is the art of those who aspire to serve the spirit.\"</i><br><br><div align=right>  Dr Maria Montessori </div>';
mytext[5] = '<i>\"What is to be particularly noted in these child conversions is a psychic cure, a return to what is normal. Actually, the normal child is one who is precociously intelligent, who has learned to overcome himself and to live in peace, and who prefers a disciplined task to futile idleness. When we see a child in this light, we would more properly call his \'conversion\' a \'normalization\'.\"</i><br><br><div align=right>  Dr Maria Montessori </div>';

var x = (Math.random() * 10000) % 5;

var y = mytext[eval(Math.round(x))];
document.write("<table width=600><tr><td><style=\"font-size=12px\;\">" + y + "</style></td></tr></table>");

}