// PARSE FORMfunction ParseForm() {    if(document.location.search.indexOf('=')>-1) {        formvalsues=unescape(document.location.search.substring('1')).replace(/\+/g," ").split('&');        for(v=0;v<formvalsues.length;v++) {            tempEq=formvalsues[v].replace(/=/,"='");            eval(tempEq+"'");            }        }    }var formdata=new Array();function parse_form() {    if (document.location.search.indexOf('=')>-1) {         keyvalues=unescape(document.location.search.substring('1').replace(/\+/g,' ')).split("&");        for(p=0;p<keyvalues.length;p++) {            pairs=keyvalues[p].split("=");            formdata[pairs[0]]=pairs[1];            }                    }    }//	C1C. SK1.0-4.0: GENERIC: ALT POPfunction AltPop(whichlink,w,h) {	x_target = whichlink.target;	x_url = whichlink.href;	eval("popWindow=window.open(x_url,x_target,\"width="+w+",height="+h+",scrollbars=yes,resizable=yes\")");		}//	C1C. SK1.0-4.0: GENERIC: POP TOOLfunction PopTool(whichlink,w,h) {	x_url = whichlink;	eval("popWindow=window.open(x_url,x_target,\"width="+w+",height="+h+",scrollbars=yes,resizable=yes\")");		}// JS NAVIGATIONfunction example(annotation,title,sample) {	this.annotation=annotation;	this.title=title;	this.sample=sample;	}	jsexamples=new example(7);	jsexamples[0]=new example("cookies.js.html","js cookie tools","");jsexamples[1]=new example("daily.js.html","js daily images","");jsexamples[2]=new example("dates.js.html","js date autotext","");jsexamples[3]=new example("parseform.js.html","js parse form","");jsexamples[4]=new example("preload.js.html","js preload","");jsexamples[5]=new example("random.js.html","js random image","");jsexamples[6]=new example("slideshow.js.html","js slideshow","");function ReturnFunctionNav() {	var i=0;	jsselect="<option value=#>Select Example";	while(jsexamples[i]) {		jsselect+="<option value="+jsexamples[i].annotation+">"+jsexamples[i].title.toUpperCase();		i++;		}	return jsselect;	}
