// JavaScript Document
function displaywisdom1(noun1,verb1,noun2)
{
	if (!noun1){noun1="things"}
	if (!verb1){verb1="change"}
	if (!noun2){noun2="things"}
	window.alert("God grant me the serenity to accept the "
	+ noun1
	+" I cannot change, courage to "
	+ verb1
	+" the "
	+ noun2
	+" I can, and wisdom to know the difference.")
}