You can create a PostScript (PS) version of the PSTricks picture (also: PS or PDF version of a PGF/TikZ picture) using LaTeX. I would recommend the use of the standalone class to produce a file which only holds the picture without any other material. Then import the PS or PDF in a vector graphic editor with supports the format as well as SVG output. I would recommend Inkscape which is free, open-source and available for Linux, Mac and MS Windows. Simply load the PS or PDF file and choice "Save As" and select "Plain SVG" output. These files can the be viewed with modern browsers and included into websites.
Inkscape also supports command line parameter (at least the Linux version I have) and therefore you can use the following commands to convert PSTricks to SVG:
latex file.tex
dvips file.dvi
inkscape file.ps --export-plain-svg=file.svg
Note:
I used the first example from the website you linked as a test. I removed the figure environment and used the standalone class instead. There seems to be an issue with the bounding box. The s[n] and e[n] at the left and right, respectively, are not fully included. I fixed this with the border=5mm option of the standalone class. I'm not sure if it is an issue of PSTricks or maybe dvips.