There are two differents uses of the word "Mode" in your xorg.conf.
One is in your "Monitor" section. This would be the "Modeline" keyword and is used as follows ...
Section "Monitor"
Identifier "Dell LCD"
HorizSync 31.5 - 48.5
VertRefresh 40.0 - 70.0
Option "DPMS"
UseModes "Modes1"
EndSection
Section "Modes"
Identifier "Modes1"
Modeline "1280x1024" 75.13 1280 1336 1472 1664 1024 1025 1028 1050 -hsync +vsync
Modeline "1400x1050" 84.76 1400 1472 1616 1832 1050 1051 1054 1076 -hsync +vsync
EndSection
Modeline in this case tells the X server exactly the dimensions on your display. X does it's best to try and guess this information, but sometimes (such as in my case), you have to specify the exact numbers.
"Modes" keyword is used in the "Screen" section in the "Display" subsection. This keyword tells the X server what resolutions are supported at particular bit levels. So, in my case ...
SubSection "Display"
Depth 24
Modes "1400x1050" "1280x1024"
EndSubSection
To figure out the correct modeline values, either check out a similar laptop at
http://www.linux-on-laptops.com or use the generator located here
http://xtiming.sourceforge.net/cgi-bin/xtiming.pl
I hope that clears up some confusion.