// JavaScript Document
function NewForm()
{
	
	//day of birth
	if (document.form2.village.value=="") 
	{
		alert("Please enter a Village Name")
		document.form2.village.focus()
		return false
	}
}
