function isBlank(testStr)
	{
	if (testStr.value.length == 0)
		return true
	for (i = 0; i <= testStr.value.length-1; i++)
		if (testStr.value.charAt(i) != " ")
			return false
	return true
	}
  
