Don't try javascript. I have tried this and it's a nightmare. A javascript variable can only contain 256 characters. If you want to transfer more than 256 characters you have to "chain" the variables.
The easiest way to transfer data is in the URL.
Say, the paragraph information is stored in a variable called $paragraph.
the URL link would look like this
<a href="page2.php?paragraph=<?echo $paragraph;?>">Next page</a>
Should work...
reg's
Dik