Click to See Complete Forum and Search --> : Simple text link to pop-up


blastbum
08-15-2003, 03:27 AM
Hi,

This is probably the most simple question in the history of this buletin board.

At this site I'm developing at: http://www.ds-d.com/actionindex.htm

I'm trying to get the "Copyright Notice" link down at the bottom of the page to open up a simple 450x400 pop-up window that has the copyright information on it. Now I want the window must have NO tool bar, address bar, scroll bars etc.

Now, how on God's green earth do I do it?? :confused:

Thanks heaps! (if you help me)

Blastbum

AdamGundry
08-15-2003, 04:36 AM
According to accessibility standards, you should not be using popup windows. If you insist on doing so, you can use the code below, but be aware this may cause users with popup blockers not to see your copyright notice.

<a href="example.html" onclick="window.open(this.href, 'windowName', 'width=450,height=400'); return false">Open window</a>

Adam