Hi there,
It seems you have mixed up some of your quotes in the statement.
Take a look at this:
Code:
onClick='fullScreen('/patient
As you can see, the second ' will close the code for the onclick handler. It's better to use double double quotes in ASP to send out a single double quote to the browser, like this:
Code:
onClick=""fullScreen('/patient
That way, you can use the single ' for JavaScript, and the double quotes for ASP strings.
Secondly, you shouldn't add the target attribute. Because you override the default behavior for the link, this makes no sense. Besides, the JavaScript function takes care of that.
HtH
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.