
<!--
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "The Printing Press was invented by Johann Gutenberg in 1450. The design came from presses used by farmers to make olive oil."
random_text[number++] = "The Chinese invented moveable type about 1040. The block was made from clay and glue, and was fired to make it durable."
random_text[number++] = "The original form of “Broadband Communication” is the Newspaper."
random_text[number++] = "Due to its durability book pages were made of vellum (calf or lamb skin) before the invention of the printing press. "
random_text[number++] = "First Amendment to the Constitution: Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the government for a redress of grievances. "
random_text[number++] = "An Austrian printer, Alois Senefelder, invented lithograph printing."
random_text[number++] = "Lithograph printing works on the principle that oil and water do not mix."
random_text[number++] = "In 1804 the third Earl of Stanhope replaced the screw press with an iron framed lever press."
random_text[number++] = "Rockville, Cold Spring, Richmond, all were founded in the same year, 1856."
random_text[number++] = "Cold Spring’s brewery was founded during the mid 1870’s"
random_text[number++] = "Cold Spring once was a stopping place on the Red River Oxen Trail."
random_text[number++] = "Rockville and Cold Spring’s location was due to the availability of waterpower to run mills and saws."
random_text[number++] = "The six first permanent families of the Cold Spring area were Nicholas Jacoby, J. Maselter, Nicholas Hansen, John Theis, John Fuchs, and Nicholas Kirsch."
random_text[number++] = "Cold Spring Granite Company was founded in 1920."
random_text[number++] = "In 1889, by petition, the name Cold Spring City was shortened to Cold Spring.  The Post Office Department in Washington by mistake omitted the word “Spring” instead of “City” so the official postal name was “Cold City” for a while till the error could be corrected."
random_text[number++] = "The invention of paper can be traced to the Han Dynasty of China between the years 202 BC to 202 AD."
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->

