hhmmmm... okay... here goes:
You obviously have the following function somewhere in your javascript code:
PHP Code:
function popUp() {
...
}
So, instead of doing it on load... remove the "window.onload" section completely, and on your link, put the following:
Code:
<a href="JavaScript:void(0)" onClick="showbox('JEFF');">Open Jeff!</a>
This is how I would've gone about it, but there are other ways... you can also keep it on the HREF area, but I prefer doing it on click.
Should work, and if it doesn't, let me know and tell me what happens.
Bookmarks