| 
 | 
 
 
发表于 2003-8-21 13:29:42
|
显示全部楼层
 
 
 
function launch(pg) { 
        var w = 630, h = 450; 
  var popW = w, popH = h; 
        if (document.all || document.layers) { 
    w = screen.availWidth; 
    h = screen.availHeight; 
        } 
        var page = pg + ".htm"; 
  var leftPos = (w-popW)/2, topPos = (h-popH)/2; 
  if(document.all) { 
                var wOpt="status=0,scrollbars=0,resizable=0,width="+popW+",height="+popH+",left="+leftPos+",top="+topPos; 
                window.open(page,"BBIagentRouter",wOpt); 
  } else { 
                var wOpt="status=0,scrollbars=0,resizable=0,width="+popW+",height="+popH+",screenX="+leftPos+",screenY="+topPos; 
                window.open(page,"BBIagentRouter",wOpt); 
  }    
} 
 
function showHint(mode) { 
        switch (mode) { 
                case 0: status=applet; break; 
                case 1: status=plugin; break; 
                case 2: status=jnlp; break; 
                default: status=''; 
        } 
        return true; 
} 
 
function isValidFile(fm, msg) { 
        if (fm.jarfile.value=="") { 
                alert(msg); 
                return false; 
        } 
        return true; 
} |   
 
 
 
 |