function validat(){
	if (document.frm.Amount.value=="") {
		alert('Please write the gift amount');
		document.frm.Amount.focus();
		return false;
	} else if (isNaN(document.frm.Amount.value)){
		alert('Gift Amount should be a number');
		document.frm.Amount.focus();
		return false;
	}
}