	// Store some random quotations
	
	var random_quotes = new Array();
	random_quotes[0] = "\"Change your thoughts and you change your world.\"  (Norman Vincent Peale)";
	random_quotes[1] = "\"Life is something that everyone should try at least once.\"  (Henry J. Tillman)";
	random_quotes[2] = "\"Always bear in mind that your own resolution to succeed is more important than any one thing.\"  (Abraham Lincoln)";
	random_quotes[3] = "\"There is only one success - to be able to spend your life in your own way.\"  (Christopher Morley)";
	random_quotes[4] = "\"Success is not the result of spontaneous combustion.  You must set yourself on fire.\"  (Reggie Leach)";
	random_quotes[5] = "\"Wish not so much to live long as to live well.\"  (Benjamin Franklin)";
	random_quotes[6] = "\"The unexamined life is not worth living for man.\"  (Socrates)";
	random_quotes[7] = "\"The universe is change; our life is what our thoughts make it.\"  (Marcus Aurelius Antoninus)";
	random_quotes[8] = "\"They always say time changes things, but you actually have to change them yourself.\"  (Andy Warhol)";
	random_quotes[9] = "\"The person who makes a success of living is the one who sees his goal steadily and aims for it unswervingly. That is dedication.\"  (Cecil B. DeMille)";
	random_quotes[10] = "\"Formulate and stamp indelibly on your mind a mental picture of yourself as succeeding. Hold this picture tenaciously. Never permit it to fade. Your mind will seek to develop the picture...Do not build up obstacles in your imagination.\" 	(Norman Vincent Peale)";
	random_quotes[11] = "\"If you wish success in life, make perseverance your bosom friend, experience your wise counselor, caution your elder brother, and hope your guardian genius.\"  (Joseph Addison)";
	
	// Pick a random quote from the list,
	// and set the 'random-quote' paragraph content to that quote
	
	function Rand(n) {
	  return (Math.floor(Math.random() * n + 1 ));
	}
	function Pick_Quote()	{
	  document.getElementById("random_quote").innerHTML = random_quotes[Rand(12)-1];
	}

	// Adjust the height as the browser window changes
		
	function SetHeight() {
	  var myWidth = 0, myHeight = 0, H1 = 180, min2 = 50;
	  if( typeof( window.innerWidth ) == 'number' ) {
	    //Non-IE
	    myWidth = window.innerWidth;
	    myHeight = window.innerHeight;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	    //IE 6+ in 'standards compliant mode'
	    myWidth = document.documentElement.clientWidth;
	    myHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	    //IE 4 compatible
	    myWidth = document.body.clientWidth;
	    myHeight = document.body.clientHeight;
	  }
	  //Make adjustments
			myHeight = myHeight - H1 ;
		if (myHeight < min2) { myHeight = min2 }
		// alert(myHeight);
		return myHeight;
	}
	function Refresh() {
		location.href = location.href;
	}

