diff --git a/html/align.html b/html/align.html
index 4153a1d48d3b5c6bd1e7f7fb4a8ea785e3bb536c..851b517bae7740933a2778197d0357c824d53ee9 100644
--- a/html/align.html
+++ b/html/align.html
@@ -69,10 +69,9 @@ If you are not familiar with CVS, its is time to document yourself.
   <li>rdf: some examples to be tested;</li>
   <li>results: some result alignments and evaluations;</li>
   <li>dtd: the align.dtd and align.owl alignment specification;</li>
-  <li>lib: jar-files including a procalign.jar (in the zip-file the
-  owl-api libraries are included);</li>
+  <li>lib: jar-files (in the zip-file the owl-api libraries are included);</li>
   <li>html: a few html presentation files</li>
-  <li>build.xml: ant file to compile and generate jar-file.</li>
+  <li>build.xml: ant file to compile and generate jar-files.</li>
   <li>distrib: contains a few files for building the distribution</li>
   <li>classes: the compiled classes (in the zip file, the classes are
   included)</li> 
@@ -100,6 +99,26 @@ Note that OWL-API needs log4j and getopt packages, but these are
   not included in the CVS repositories). It is also very usefull to
   have <a ref="http://ant.apache.org">Ant</a>.</p>
 
+<h2>Required libraries (jar)</h2>
+
+<p>Using the api (align.jar) requires:
+<ul compact="1">
+<li>OWL-API (api.jar)</li>
+</ul></p>
+<p>Using its implementation (procalign.jar) requires in addition:
+<ul compact="1">
+<li>the implementation of the OWL-API (impl.jar, io.jar, rdfparser.jar,
+rdfapi.jar),</li>
+<li>GNU parameter management (getopt.jar),</li>
+<li>(log4j.jar).</li>
+</ul></p>
+<p>Using the <a href="alignwn.html">Wordnet example</a> requires, in
+addition:
+<ul compact="1">
+<li>commons-logging.jar</li>
+<li>The Java WordNet Library (jwnl.jar).</li>
+</ul></p>
+
 <h2>Assembling</h2>
 
 <p>A good way of setting your environment (from the CVS archive) for
@@ -117,7 +136,8 @@ $ rm -rf owl
 
 <h1>Compilation and use</h1>
 
-<p>Generating the lib/procalign.jar file can be done by launching:
+<p>Generating the lib/procalign.jar file (and the other libraries) can
+  be done by launching:
 <pre>
 $ ant jar
 </pre></p>
@@ -153,12 +173,13 @@ or ($CWD is the current directory)
 <pre>
 $ java -jar lib/procalign.jar file://localhost$CWD/rdf/onto1.owl file://localhost$CWD/rdf/onto2.owl 
 </pre>
-Additionaly a number of options are, or will be, available:
+Additionaly a number of options are available:
 <ul compact="1">
 <li>displaying debug information (-d);</li>
 <li>controling the way of rendering the output (-r);</li>
 <li>deciding the implementation of the alignment method (-i);</li>
-<li>providing an input alignent (-a) [implemented but not used by methods].</li>
+<li>providing an input alignent (-a) [implemented but not used by most
+  methods].</li>
 </ul>
 </p>
 
diff --git a/html/index.html b/html/index.html
index dd726a1067b03ba5cc66b2841bd756ac5d56183b..869b1d13e31c662f5f83a61c101b1dfcd0e57acf 100644
--- a/html/index.html
+++ b/html/index.html
@@ -28,10 +28,17 @@ An alignment API in Java and implementation on top of the OWL API.</dd>
 <dd>Some data for aligning.</dd>
 <dt><a href="eval.html">Evaluators</a></dt>
 <dd>Evaluating alignments from the format.</dd>
-<dt><a href="http://www.iro.umontreal.ca/~owlola">[<font color="red">The OLA and VisOn pages</font>]</a></dt>
+<dt><a href="alignwn.html">Using the API with wordnet</a>
+[<font color="red">Included with the API zip file</font>]</a></dt>
+<dd>Demonstrate how to use wordnet within the API</dd>
+<dt><a href="http://www.iro.umontreal.ca/~owlola">[<font color="red">The OLA algorithm</font>]</a></dt>
 
-<dd>The Owl-Lite Alignment algorithm home page and the associated
-  VisOn visualizer (University of Montréal)</dd>
+<dd>The Owl-Lite Alignment algorithm (University of Montréal)</dd>
+<dt><a href="http://www.iro.umontreal.ca/~owlola">
+[<font color="red">VisOn pages</font>]</a>  (University of Montréal)</dt>
+<dd>The VisOn ontology visualizer now works with any implementation of
+  the API. It provides the opportunity to load and display
+  ontologies, load, run, display and compare alignment algorithms.</dd>
 <dt><a href="http://align.deri.org">[<font color="red">OWL Ontology Aligner</font>]</a></dt>
 <dd>A server built around the API for processing, editing and
   rendering alignments (University of Innsbruck).</dd>
diff --git a/html/relnotes.html b/html/relnotes.html
index 92b632bbdb86824047f36d2f545f73f1e56e3d9f..bccde0b07f60dfc3ac5e8ae8a91cb817598c4cad 100644
--- a/html/relnotes.html
+++ b/html/relnotes.html
@@ -12,10 +12,8 @@
 <p><ul compact="1">
 <li>Add full support for algebraic operations (meet/join/inv/compose)</li>
 <li>Fix all implementation that assume 1-1 alignments</li>
-<li>Fix usability of Wordnet (on Mac OS X)</li>
 <li>GroupAlign implementation</li>
 <li>Build on unit tests</li>
-<li>Separating the wordnet stuff from the rest (alignwn)</li>
 <li>Integrating tagging to the wordnet stuff</li>
 </ul></p>
 
@@ -27,8 +25,10 @@
 <p>New version featuring:
 <ul compact="1">
 <li>Full implementation of parameters (reader included)</li>
-<li>Separated the API from its implementation (alignapi/align)</li>
+<li>Separated the API from its implementation (align/procalign)</li>
+<li>Separated the WordNet from the implementation (alignwn)</li>
 <li>Corrected XML header of some examples (necessary for Java 1.5)</li>
+<li>Fixed usability of Wordnet (on Mac OS X)</li>
 <li>Added a (necessary) SubsumedRelation!</li>
 <li>Added a sample embedding of main functions</li>
 <li>Added three replicas of align(A,p) -> align(), align(A) and align(p)</li>