
<!--
function popup_win( loc, wd, hg ) {
   var remote = null;
   remote = window.open('','','width=' + wd + ',height=' + hg + ',resizable=0,scrollbars=1,top=0,left=0');
    if (remote != null) {
            if (remote.opener == null) {
            remote.opener = self;
        }
            remote.location.href = loc;
    } else { self.close(); }
}


function popup_win2( loc, wd, hg ) {
   var remote = null;
   remote = window.open('','','width=' + wd + ',height=' + hg + ',resizable=1,scrollbars=1,toolbar=1,top=0,left=0');
    if (remote != null) {
            if (remote.opener == null) {
            remote.opener = self;
        }
            remote.location.href = loc;
    } else { self.close(); }
}

// -->
