function Querystring(qs) { // optionally pass a querystring to parse this.params = new Object(); this.get=Querystring_get; if (qs == null) qs=location.search.substring(1,location.search.length); if (qs.length == 0) return; // Turn back to // See: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1 qs = qs.replace(/\+/g, ' '); var args = qs.split('&'); // parse out name/value pairs separated via & // split out each name=value pair for (var i=0;i'; x.document.open(); x.document.write(text2); x.document.close(); } } // Creates a hideable box with a given title in the div with the id boxDivId and inside a div with the id childDivIt to access the content function makeHideBox( title, boxDivId, childDivId ) { var text = ""; text += '
' // Create a div called boxDivId+"Buttons" and put the - button inside text += '
'; text += ''; text += '
'; text += "

" + title + "

"; text += '
'; text += '
'; writit( text, boxDivId ); } // Hide the content of the hidable box with the id boxDivId function toggleBox( boxDivId ) { new Effect.toggle( boxDivId + "Effect", 'blind' ); //text = '+/-'; //writit( text, boxDivId + "Buttons" ); }