

	
//	Verify that there is some text in the string
function IsFieldBlank(TestString)
{
	if(TestString.length < 1)
	{
		return true
	}
	else
	{
		return false
	}	
}
	
