function validateNotEmpty(sValue)
{
	return ( null != sValue ) && /\S/.test( sValue );
}
