Tod wrote:
What would be the easiest way to provide a popup or a new window that would allow a user to switch out to an external URL? I'd like to provide the ability for the user to perform a search against an internal search engine but on a new page.
<a target="_blank"> or <form onsubmit="window.open()"> would be easiest if you have direct control of the HTML output.
Otherwise, you can use JavaScript to select the appropriate element and modify it as necessary.
It shouldn't be too difficult either way. Google around if you need examples.
MZMcBride