var w = window;
      function openWin1(url) {
         if ((w == window) || w.closed) {
            w = open(url,"privacy","width=550,height=580,scrollbars=yes,resizable=yes");
         } else {
            w.focus(); 
            w = open(url,"privacy","width=550,height=580,scrollbars=yes,resizable=yes");
         }
         return(false);
            }
            function openWin2(url) {
         if ((w == window) || w.closed) {
            w = open(url,"map","toolbar=yes,scrollbars=yes,resizable=yes,width=550,height=580");
         } else {
            w.focus(); 
            w = open(url,"map","toolbar=yes,scrollbars=yes,resizable=yes,width=550,height=580");
         }
         return(false);
            }

