Page is a not externally linkable
tedster - 1:21 am on Oct 28, 2002 (gmt 0)
It says to "Take the text string of the URL. Use a substring beginning three past the position of the "?" and going through the end of the text string.
For http://example.com/page.html?a=xxx, the two lines below should return the value after the "=" for the variable "xxx": fullURL = parent.document.URL
xxx = fullURL.substring(fullURL.indexOf('?')+3, fullURL.length)