Jonathan,
I think this is what you are after:
The link:
<a href="javascript:window.open('newpage.php3?id=<? echo $id; ?>','new')">Link to new window</a>
In the new page:
$query = mysql_query("SELECT text FROM table WHERE id=$id");
$result = mysql_fetch_array($query);
print $result["text"];
Hope this helps
Regards
Mike
www.digitalegg.net