Playing around with this a little more, you could also instead make it open up Wikipedia.
To do that, download the
wikipedia.js file and upload it to your forum.
Then in inc_header.asp around line 231 look for:
'## END - REMOVAL, MODIFICATION OR CIRCUMVENTING THIS CODE WILL VIOLATE THE SNITZ FORUMS 2000 LICENSE AGREEMENT
After that add:
Response.Write "<script src=""wikipedia.js""></script>"
The default language is set to english, but if you want a different language open up the wikipedia.js file and look for line 21. Look for the section that says:
http://
en.wikipedia.org/wiki/Special:Search?search=
Change the part in red to the language you prefer. If you go to www.wikipedia.org you can hover over the different language links and notice the first two letters of the URL. Put those letters in place of the ones above in red.
For example, if you wanted French you would change it to:
http://
fr.wikipedia.org/wiki/Special:Search?search=
That's it!<