// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array()

Quotation[0] = "If one rejects laissez faire on account of man's fallibility and moral weakness, one must for the same reason also reject every kind of government action.<br />- Ludwig von Mises";
Quotation[1] = "A man who chooses between drinking a glass of milk and a glass of a solution of potassium cyanide does not choose between two beverages; he chooses between life and death. A society that chooses between capitalism and socialism does not choose between two social systems; it chooses between social cooperation and the disintegration of society. Socialism is not an alternative to capitalism; it is an alternative to any system under which men can live as human beings.<br />- Ludwig von Mises, Human Action";
Quotation[2] = "The mere fact that an event happened in a distant country and a remote age does not in itself prove that it has no bearing on the present.<br />- Ludwig von Mises";
Quotation[3] = "In the unhampered market economy there are no privileges, no protection of vested interests, no barriers preventing anybody from striving after any prize.<br />- Ludwig von Mises";
Quotation[4] = "It is no crime to be ignorant of economics, which is, after all, a specialized discipline and one that most people consider to be a 'dismal science.' But it is totally irresponsible to have a loud and vociferous opinion on economic subjects while remaining in this state of ignorance.<br />- Murray N Rothbard";
Quotation[5] = "Money is a commodity ... not a useless token only good for exchanging; ... It differs from other commodities in being demanded mainly as a medium of exchange.<br />- Murray N Rothbard";

Quotation[6] = "The free man will ask neither what his country can do for him nor what he can do for his country.<br />- Milton Friedman";
Quotation[7] = "Political freedom means the absence of coercion of a man by his fellow men. The fundamental threat to freedom is power to coerce, be it in the hands of a monarch, a dictator, an oligarchy, or a momentary majority.<br />- Milton Friedman";
Quotation[8] = "A major source of objection to a free economy is precisely that it ... gives people what they want instead of what a particular group thinks they ought to want. Underlying most arguments against the free market is a lack of belief in freedom itself.<br />- Milton Friedman";
Quotation[9] = "There is all the difference in the world between treating people equally and attempting to make them equal. While the first is the condition of a free society, the second means as De Tocqueville describes it, a new form of servitude.<br />- F.A. Hayek";
Quotation[10] = "None are more hopelessly enslaved than those who falsely believe they are free.<br />- Johann Wolfgang von Goethe";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();