You can do something like this:
var BackToList = function() {
window.opener.focus();
window.close();
};
Then your link should call the function BackToList.
If your link is a simple tag aAND has an identifier, you will look like this in your loadevent window :
document.getElementById("the id goes here").onclick = BackToList;
source
share