//popcorn! NS = IE = false; if ((navigator.appName == "Microsoft Internet Explorer")) IE = true; else NS = true; var popwin_ie; function Popcorn(theURL,winName,features) { if (IE) { //focus() doesn't work on ie4.0 if (popwin_ie) { popwin_ie.close(); } setTimeout("popwin_ie = window.open(\""+theURL+"\",\""+winName+"\",\""+features+"\")",1000); } else { var popwin_ns = window.open(theURL,winName,features); popwin_ns.focus(); } }