PopUp Window Example

In order for a popup window to be 508 compliant, it must provide an alternative method for
users without javascript. To accomplish this, make an alternative page similar to the popup page
and have the anchor tag call it. The javascript for the popup window can be placed in the onClick
attribute. 'Return false' must be placed after the javascript call so that the calling page is not sent to
the alternative page as well.

<a href="alternative_page.html" onclick="javascript:pop_up('pop_up.html');return false">Example Link</a>

Example Link