Through the browser object you can get all the info you want..
Browser.Title
The current HTML document's title.
Browser.Domain
The current domain, e.g. scirra.com.
Browser.Hash
The string after the hash at the end of the URL, including the hash. For example, if the current URL is http://scirra.com/mygame/index.html#teapot, this returns #teapot.
Browser.PathName
The path relative to the domain in the URL. For example the path name of http://scirra.com/mygame/index.html#teapot is /mygame/index.html.
Browser.Protocol
The current protocol, usually either http: or https:.
Browser.QueryParam
Return a query string parameter by name. For example, if the URL ends with index.html?foo=bar&baz=wan, QueryParam("foo") returns bar and QueryParam("baz") returns wan.
Browser.QueryString
Return the full URL query string including the question mark. For example, if the URL ends with index.html?foo=bar&baz=wan, this returns ?foo=bar&baz=wan.
Browser.Referrer
Get the previous page that linked to this page, if any.
Browser.URL
Get the complete current URL in the browser address bar, including the protocol.