// Advanced Random Quotes Start

  var q,quote= new Array();
  quote[quote.length]="<p>Never in the field of human conflict was so much owed by so many to so few.<br /><span class='quote-name'>- Winston S. Churchill</span></p><cite></cite>";
  quote[quote.length]="<p>No one can guarantee success in war, but only deserve it.<br /><span class='quote-name'>- Winston S. Churchill</span></p><cite></cite>";
  quote[quote.length]="<p>Wars may be fought with weapons, but they are won by men.<br /><span class='quote-name'>- General George S. Patton</span></p><cite></cite>";
  quote[quote.length]="<p>Those who can not remember the past are condemned to repeat it.<br /><span class='quote-name'>- George Santayana</span></p><cite></cite>";
  quote[quote.length]="<p>Victory came, not from the work of any one man, but from the sum of many men's efforts.<br /><span class='quote-name'>- Field Marshal Viscount Slim</span></p><cite></cite>";
  quote[quote.length]="<p>Men, not materials, are the dearest commodity in war.<br /><span class='quote-name'>- General Francisco Franco</span></p><cite></cite>";
  quote[quote.length]="<p>The only thing we have to fear is fear itself.<br /><span class='quote-name'>- Franklin D. Roosevelt</span></p><cite></cite>";
  quote[quote.length]="<p>In war there is no prize for the runner-up.<br /><span class='quote-name'>- General Omar Bradley</span></p><cite></cite>";
  quote[quote.length]="<p>We must all hang together, or assuredly we shall all hang separately.<br /><span class='quote-name'>- Benjamin Franklin</span></p><cite></cite>";
  quote[quote.length]="<p>Those who have long enjoyed such privileges as we enjoy forget in time that men have died to win them.<br /><span class='quote-name'>- Franklin D. Roosevelt</span></p><cite></cite>";
  quote[quote.length]="<p>In war there is no substitute for victory.<br /><span class='quote-name'>- Pyrrhus</span></p><cite></cite>";
  q=parseInt(Math.random()*quote.length);
  q=(isNaN(q))?0:q;
    document.write(quote[q]);


// Advanced Random Quotes End