// JavaScript Document
function displaywisdom5(verb1,noun1,verb2)
{
	if (!verb1){verb1="find"}
	if (!noun1){noun1="way"}
	if (!verb2){verb2="make"}
	window.alert("We will either "
	+ verb1
	+ " a "
	+ noun1
	+ ", or "
	+ verb2
	+ " one.")
}