<!--
// open sized/placed popup window 
        function showNewWin (url2show)
                {
                if (document.images) {
                var newWinUrl = url2show;
/* Next two lines put popups at upper right of screen, 75 px from absolute corner */				
				var newWinWidth = (window.screen.width) - (600 + 75);
				var newWinHeight = 75;

                var winN = window.open(newWinUrl,"win2","status=yes,menubar=yes,location=yes,toolbar=no,height=600,width=700,resizable=yes,left=" + newWinWidth + ",top=" + newWinHeight + ",screenX=" + newWinWidth + ",screenY=" + newWinHeight + ",scrollbars=yes");
                winN.focus();
                        } //end document.images "if"
                } //end showNewWin function          
-->