Question...
Is it possible to have a link on a main page that when clicked, it calls a function to both open a new pop up and close the current main page?
Would it go something like this:
function newWindow('url')
{
New_Window = window.open(url, "title of page", "width=x, height=y")
New_Window.focus()
window.close()
}Thanks!