why does quad colour overlay my texture?

When i bind my texture (which is a char image) onto the yellow quad, the image texture becomes yellow. How cld i remedy that??

Thanks.

glTexEnv with GL_MODULATE is default. Use GL_DECAL to replace with the pure texture color.

Thanks!!