// JavaScript Document// ==============================================// Copyright 2004 by CodeLifter.com// Free for all; but please leave in this header.// ==============================================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] = "\"Those who give have all things. They who withhold have nothing.\"<br><em>-Hindu Proverb&nbsp;&nbsp;";Quotation[1] = "\"Hear O  Israel, the Lord our God, the Lord is one.\"<br><em>-The Hebrew Bible&nbsp;&nbsp;";Quotation[2] = "\"There is a means of polishing all things by which rust can be removed.&nbsp;&nbsp;<br>That which polishes the heart is the invocation of Allah.\"<br><em>-The Qur'an&nbsp;&nbsp;";Quotation[3] = "\"In much wisdom is much grief;&nbsp;&nbsp;<br>and he that increaseth knowledge increaseth sorrow.\"<br><em>-Ecclesiastes 1:18&nbsp;&nbsp;";Quotation[4] = "\"However little a monk may receive, if he despises not what he receives,&nbsp;&nbsp;<br>even the gods praise that monk, whose life is pure and full of endeavor.\"<br><em>-Dharmapada&nbsp;&nbsp;";// ======================================// Do not change anything below this line// ======================================var Q = Quotation.length;var whichQuotation=Math.round(Math.random()*(Q-1));function showQuotation(){document.write(Quotation[whichQuotation]);}showQuotation();