		function checkForm(form){
//check  name
			if(form.txtName.value==""){
				alert("Enter your Name");
				form.txtName.select();
				return false;
			}

			if(form.txtAdd.value==""){
				alert("Enter your Address");
				form.txtAdd.select();
				return false;
			}


				form.submit();
		}

