Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening a URL in a popup not working

Status
Not open for further replies.

emozley

Technical User
Joined
Jan 14, 2003
Messages
769
Location
GB
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top