function browserDetect(){
	output = document.getElementById("information");
	var buffer;
		buffer = '<p class="accent">You\'re using ' + BrowserDetect.browser + ' ' + BrowserDetect.version + ' on ' + BrowserDetect.OS + '!</p>';
	if(BrowserDetect.browser == "Explorer")
		buffer = buffer + '<p class="accent">Please, consider to use other browser. <a href="http://getfirefox.com" target="_blank">Firefox</a> is a good choice.</p>';
	output.innerHTML = buffer;
}

function random(lower, upper){
    num = upper - lower;
    rand = Math.random() * num;
    rand = Math.round(rand);
    return parseInt(lower) + rand;
} 

function start(){
	output = document.getElementById("information");
	
	var phrases=new Array();
	phrases[0]="I have never met a man so ignorant that I couldn't learn something from him.<br/><br/>Galileo Galilei";
	phrases[1]="All truths are easy to understand once they are discovered; the point is to discover them.<br/><br/>Galileo Galilei ";
	phrases[2]="You can learn from anyone even your enemy. <br/><br/> Ovid";
	phrases[3]="One can resist the invasion of an army but one cannot resist the invasion of ideas.<br/><br/>Victor Hugo ";
	phrases[4]="The most important of life's battles is the one we fight daily in the silent chambers of the soul.<br/><br/>David O. McKay ";
	phrases[5]="As I grow older, I pay less attention to what men say. I just watch what they do.<br/><br/>Andrew Carnegie";
	phrases[6]="Great spirits have always encountered violent opposition from mediocre minds.<br/><br/>Albert Einstein ";
	phrases[7]="Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened.<br/><br/>Sir Winston Churchill ";
	phrases[8]="Do what you can, with what you have, where you are.<br/><br/>Theodore Roosevelt ";
	phrases[9]="I may disagree with what you have to say, but I shall defend, to the death, your right to say it.<br/><br/>Voltaire";

	output.innerHTML = phrases[random(0,9)];
}