/*
============================================================
Script:     Random Quote

Functions:  This simple script allows you to print random
            quotations in the page.  Any number of quotes
            may be used.
            
Browsers:   All

Author:     etLux
============================================================

INSTRUCTIONS:

Put the following script in the <body> of your page,
wherever you want the quotes to appear.  Simply set up the
quotations in the Quotations[] array, then paste in the 
whole block of code.  To format the text, wrap the usual
font tags around the script (view source on our demo on this
page for an example.)

TECH NOTE:

In quotation 8, note the text, \"beauty\" -- if you need
to use double-quote " marks, you *must* precede each
double-quote with a backslash \... otherwise the script
will break.

THE CODE:

<script language="JavaScript">
*/
// ==============================================
// 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] = "Fantastic &minus; thanks so much for your help with this!";
Quotation[1] = "This is absolutely outstanding, thank you so much!";
Quotation[2] = "I have no idea how you do it, but I&prime;m so pleased I asked you!";
Quotation[3] = "What a wonderful job you&prime;ve done!!";
Quotation[4] = "Many thanks indeed. We&prime;ll call that a good job done!";
Quotation[5] = "Looking good &minus; many thanks.";
Quotation[6] = "This is a masterpiece &minus; very well done!";
Quotation[7] = "I cannot say it any better, but I will add my thanks to you both.";
Quotation[8] = "Wowee, you guys are unbelievable!!";
Quotation[9] = "This looks absolutely fantastic! Thank you both!";
Quotation[10] = "Guys, this looks excellent.";
Quotation[11] = "The map and key were excellent. Thank you.";

// ======================================
// 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]);}

/*
</script>
============================================================
*/
