Maybe I should have included this line of
PHP which calls the function with the
php variables $text and $cellID.
echo "<a href='$location' onmouseover='display(\"$text", \"$cellID\")'>$link</a>";
Here's the function again: -
function display(text,cell){
var getText = document.getElementById(cell).innerHTML += text;
}
The code works apart from the described string length problem.
Thanks
Don