// JavaScript Document
function displaywisdom4(verb1,noun1,noun2,verb2,noun3)
{
	if (!verb1){verb1="fool"}
	if (!noun1){noun1="people"}
	if (!noun2){noun2="people"}
	if (!verb2){verb2="fool"}
	if (!noun3){noun3="people"}
	window.alert("You can "
	+ verb1
	+ " all the "
	+ noun1
	+ " some of the time, and some of the "
	+ noun2
	+ " all the time, but you cannot "
	+ verb2
	+ " all the "
	+ noun3
	+ " all the time.")
}