function count_words(tbox_input)
	{
	no_words = tbox_input.value.split(" ");
	alert("Text box has " + no_words.length + " words");
	return false;
	}
