5 // stolen from darin's page cycler
6 var options
= location
.search
.substring(1).split('&');
8 function getopt(name
) {
9 var r
= new RegExp("^" + name
+ "=");
10 for (i
= 0; i
< options
.length
; ++i
) {
11 if (options
[i
].match(r
)) {
12 return options
[i
].substring(name
.length
+ 1);
18 function checkParams() {
19 document
.title
= "post:" + getopt("text") + "," + getopt("select");
26 Form submission accepted. Thanks for playing.