// JavaScript Document
// JavaScript_24_005_listing5-2

var numnames=0;
var names = new Array();
function SortNames() {
	//alert("are you you want to enter this name");
	// Get the name from the text field
	var thename = (document.theform.newname.value);
	//alert("name entered and sorted");
	// Add the name to the array
	names[numnames] = thename;
	// Increment the counter
	numnames++;
	// Sort the array
	names.sort();
	document.theform.sorted.value=names.join("\n");
}
