Unable to close the "current" window using javascript.
The following used to work prior to version 2 of FireFox.
var ua = navigator.userAgent.toLowerCase();
var isFirefox = (ua.indexOf('firefox/') != -1);
if (isFirefox) { window.open('','_parent',''); } window.close();
Firefox 2.0 - Worth Upgrading Yet?