function isEmpty(aTextField) 
{
   if ((aTextField.value.length==0) || (aTextField.value==null)) 
   {
      return true;
   }
   else 
   { 
      return false; 
   }
}	
