﻿// JScript File

function ValidateUcTbx()
{
    valid = true;
    
    var UcNo = form1.TBxUcNo.value;
    
    if ((UcNo == "") || isNaN(UcNo))
		{
			alert("Information is missing in the 'Union Council' box.");
			form1.UcNo.focus();
			form1.UcNo.value = "";
			valid = false;
		}
	return valid;
		
}