<!-- Hide from older Browsers
//
// Random Quote "Quote of the moment script"
// By Mike Anderson aka "Gumby" - CP/GraphX 
// (c)copyright 2001, 2002 By Mike Anderson.
//
// Add this to the </head></head> section
// <script type=text/javascript src=scripts/cpg_randomquote.js> < /script>
//
// Call the script in your source as follows:
// <script>rnd_quote();< /script>


// Enter the number of quotes
var num_quotes = 5;

// Function to pick a random number between 1 and the number of quotes defined.
function get_random()
{
    var ranNum= Math.floor(Math.random()*num_quotes)+1;
    return ranNum;
}

// Display the quote. Call this function from the location on your
// page where you want the quote to appear.
function rnd_quote()
{

var today = new Date();
var quotes = new Array(num_quotes);
var whichquote = get_random();
document.writeln('QUOTE OF THE MOMENT<br /> <b>',today.toLocaleString(),'</b><br /><br />');

// Add new quotes in the format below
quotes[1]="Clan Devious is now recruiting.";
quotes[2]="Clan Devious has server admin positions available.";
quotes[3]="Devious Game Servers REAL DAMG Server ip: 64.185.226.185:20100";
quotes[4]="Clan Devious is now recruiting.";
quotes[5]="Check your stats on our stats page.";
quotes[6]="Got something to say good or bad post in our forums.";
quotes[7]="Clan Devious in its 6th year as a clan.";
quotes[8]="Clan Devious will not tolerat cheater or hacking at any time.";
// quotes[9]="No Quote";
// quotes[10]="No Quote";
// quotes[11]="No Quote";
// quotes[12]="No Quote";
// ... Etc

document.write("<b>Quote #:</b> ",whichquote," of ",num_quotes,"<br /><br />");
document.write(quotes[whichquote]);
}
// Stop Hiding -->