// Opens the What's New page in a new window.
function itsnew()
	{
		open("whatsnew.htm");
	}

// Gives credits for spellfix.htm.
function credits()
	{
		var msg = "The immediate inspiration for this toy came from a short note in the Ohio Community Theatre Association's ";
			msg += "newsletter.  The original source appears to have been Rawlinson, G. E. (1976) The significance of letter position in word recognition. Unpublished PhD Thesis, Psychology Department, University of Nottingham, Nottingham UK.";
			msg += "\n\nJavaScript coding by Jim Parsons.  Thanks to Ted Foster for suggesting a simple way to ";
			msg += "scramble the words:  just reverse order of the internal letters.";
		alert(msg);
	}

// Gives credits for curses.htm.
function curse_credits()
	{
		var msg = "This toy is a rewrite from PHP into JavaScript of Trevor Stone's Elizabethan Curse Generator.  ";
			msg += "The original is at \n\nhttp://trevorstone.org/curse/\n\nThe lists of terms that are combined to make the ";
			msg += "curses was compiled by Jerry Maguire, English teacher at Center Grove High School ";
			msg += "in Greenwood, Indiana.";
			msg += "\n\nJavaScript coding by Jim Parsons.";
		alert(msg);
	}
