// JavaScript Document
function displaywisdom3(noun1,pluralnoun,noun2)
{
	if (!noun1){noun1="journey"}
	if (!pluralnoun){pluralnoun="miles"}
	if (!noun2){noun2="step"}
	window.alert("The "
	+ noun1
	+ " of a thousand "
	+ pluralnoun
	+ " begins with one "
	+ noun2
	+ ".")
}