I am trying to open a popup window with the following link
<a href="editcontactform.asp?VisitorID=<% =TBL("VisitorID") %>" onClick="newwindow1(this.ref);return false">E</a>
The function it is referring to is as follows:
<SCRIPT>
function newwindow1(theUrl) {
window.open(theUrl, 'jav', 'width=640,height=320,resizable=no,scrollbars=auto');
}
</SCRIPT>
When you click on the link it opens a "page not found" in the popup. Any ideas?
Thanks very much
<a href="editcontactform.asp?VisitorID=<% =TBL("VisitorID") %>" onClick="newwindow1(this.ref);return false">E</a>
The function it is referring to is as follows:
<SCRIPT>
function newwindow1(theUrl) {
window.open(theUrl, 'jav', 'width=640,height=320,resizable=no,scrollbars=auto');
}
</SCRIPT>
When you click on the link it opens a "page not found" in the popup. Any ideas?
Thanks very much