var text_st = new Array (
"The most formidable weapon against errors of every kind is reason.<br />I have never used any other, and I trust I never shall.<br />- Thomas Paine",
"The world is my country, all mankind are my brethren, and to do good is my religion. <br />- Thomas Paine , The Age of Reason",
"I do not believe in immortality of the individual, and I consider ethics to be an exclusively human concern with no superhuman authority behind it.<br />- Albert Einstein: The Human Side",
"Humanists recognize that it is only when people feel free to think for themselves, using reason as their guide, that they are best capable of developing values that succeed in serving human interests.<br />- Issac Asimov"
);
var l = text_st.length;
var rnd_no = Math.round((l-1)*Math.random());
var rtext = text_st[rnd_no];

var l = text_st.length;
var rnd_no = Math.round((l-1)*Math.random());
var quote_txt = text_st[rnd_no];

var hText = '';
hText += '<div id=wrap>';
hText += '<div id=header>';
hText += '<h1>' + page_word + '</h1>';
if ( quote == "yes" )
{
	hText += '<p><strong>' + quote_txt + '</strong></p>';
}
hText += '</div>';

document.write(hText);
