jnet
Network and graph visualization tool
plus

Similar to Jmol instructions there are two ways to implement JnetPlus into the html-page:

 1. Through the <applet> tag;
 2. Using javascript library Jnet.js (modified Jmol.js); - recommended

Code examples for these two cases are presented below:

1)  <applet code="JnetApplet" archive="examples/JnetApplet.jar" width="250" height="250">
     <param name="load" value="examples/cubes.sif">
     <param name="bgcolor" value="white">
     <param name="progressbar" value="true">
     <param name="script" value="select *; color darkkhaki; color bonds khaki; reset;
            zoom 90; label off; wireframe 0.1; spacefill 30%">
     <</applet>

2) <head>
     <script type="text/javascript">
        var JnetPath = "./"
        document.writeln('<script src="' + JnetPath + 'js/Jnet.js" type="text/javascript"><' + '/script>')
     </script>
   </head>
   ...
   <body>
        <div>
          <script type="text/javascript">
            jnetSetAppletColor("white")
            jnetApplet(300, 'load "examples/par-6.pjm"; spacefill 20%; label %a')
          </script>
        </div>
  </body>