function checkwords(maxwords){
	if (document.images)
	{
		var temp=document.form.specialty.value.split(" ")
		if (temp.length>maxwords)
		{
		alert("Specialty field cannot be longer than " + maxwords + " words!");
		return false;
		}
	}
}

