﻿function validation()
{
	if(document.getElementById("gtid_name").value=="")
	{
		alert("Bạn phải nhập vào họ tên !");
		document.getElementById("gtid_name").focus();
		document.getElementById("gtid_name").select();	
		return false;
	}
	
	if(document.getElementById("gtid_birthday").value=="")
	{
		alert("Bạn phải nhập vào năm sinh !");
		document.getElementById("gtid_birthday").focus();
		document.getElementById("gtid_birthday").select();	
		return false;
	}
	var ngay = new Date();
	var nam = ngay.getFullYear();
	if(isNaN(document.getElementById("gtid_birthday").value))
	{
		alert("Năm sinh phải là số !");
		document.getElementById("gtid_birthday").focus();
		document.getElementById("gtid_birthday").select();	
		return false;
	}
	if (document.getElementById("gtid_birthday").value < 1900 || document.getElementById("gtid_birthday").value > nam)
	{
		alert("Năm sinh của ban phải nằm trong khoảng từ 1900 đến nay");
		document.getElementById("gtid_birthday").focus();
		document.getElementById("gtid_birthday").select();
		return false;
	}
	return true;
}

function sumbitform()
{
		document.getElementById("frmgeomancy").submit();	
}
