What does it mean when you see things like:
?__utma=1.32168570.1258672608.1258672608.1259628772.2&__utmb=1.4.10.1259628772&
etc in
They are URL parameters, they pass information back to the web server.
protocol://username:password@server:port?parameterList#anchorName
Example:
http://stackoverflow.com:80/page?param1=value1¶m2=value2
#anchorName will skip you to a certain part of an HTML pageparameterList portion is also called the queryprotocol portion is also called the schemeusername:password part can be ommittedport will default to 80 if the protocol is HTTP and the port is not specifiedprotocol in a web browser, it will default to HTTP.There is a much more detailed description from what I gave in RFC 3986: Uniform Resource Identifier (URI): Generic Syntax.