function jsQuote() 
    {
	var rannum
	var strDoc
	strDoc='';
	rannum=Math.random()*8;
	rannum=Math.round(rannum);


	switch(rannum)
	{
	case 1:{
			strDoc+='<span class="blackcenter2">"Knowledge is of two kinds. We know a subject ourselves, or we know where we can find information upon it."</span>';
			strDoc+='<br><span class="blackcenter2b">Samuel Johnson</span>';
			break
		}
	case 2:{
			strDoc+='<span class="blackcenter2">"Everybody gets so much information all day long that they lose their common sense."</span>';
			strDoc+='<br><span class="blackcenter2b">Gertrude Stein</span>';
			break
		}
	case 3:{
			strDoc+='<span class="blackcenter2">"As a general rule the most successful man in life is the man who has the best information."</span>';
			strDoc+='<br><span class="blackcenter2b">Benjamin Disraeli</span>';
			break
		}
	case 4:{
			strDoc+='<span class="blackcenter2">"Where is the wisdom we have lost in knowledge? Where is the knowledge we have lost in information?"</span>';
			strDoc+='<br><span class="blackcenter2b">T. S. Eliot</span>';
			break
		}
	case 5:{
			strDoc+='<span class="blackcenter2">"We are drowning in information and starved for knowledge."</span>';
			strDoc+='<br><span class="blackcenter2b">Unknown</span>';
			break
		}
	case 6:{
			strDoc+='<span class="blackcenter2">"In your thirst for knowledge, be sure not to drown in all the information."</span>';
			strDoc+='<br><span class="blackcenter2b">Anthony J. DAngelo</span>';
			break
		}
	case 7:{
			strDoc+='<span class="blackcenter2">"That which today calls itself science gives us more and more information, and indigestible glut of information, and less and less understanding."</span>';
			strDoc+='<br><span class="blackcenter2b">Edward Abbey</span>';
			break
		}
	case 8:{
			strDoc+='<span class="blackcenter2">"Adequate information about the existing environment and about the types of place that it is desirable to make cannot be kept inside one brain."</span>';
			strDoc+='<br><span class="blackcenter2b">Christopher Alexander</span>';
			break
		}
	default:{
			strDoc+='<span class="blackcenter2">"The number one benefit of information technology is that it empowers people to do what they want to do. It lets people be creative. It lets people be productive. It lets people learn things they didnt think they could learn before, and so in a sense it is all about potential."</span>';
			strDoc+='<br><span class="blackcenter2b">Steve Ballmer</span>';
			break
		}
	}
	document.write(strDoc);

	}
jsQuote();


