<!-- // open sized/placed 2nd window for external links and/or bring to front
        function newWin (extLink)
                {
                if (document.images) {
                var newWinUrl = extLink;

                var win2 = window.open(newWinUrl,"linkwin","status,menubar,location,toolbar,resizable,scrollbars");
                win2.focus();

                        } //end of document.images "if"
                } //end of newWin function          
        
// done hiding -->