function OpenWindow(url,width,height,name,options)
{
var left = (screen.width-width)/2;
var top = (screen.height-height)/2;
if(options ==null)
options ="";
var newWin =  window.open(url,name,"left=" +left+",top="+top+",width="+width+",height="+height+","+options);
newWin.focus();
return newWin;

}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-06
  • 2022-12-23
  • 2022-01-10
  • 2021-12-27
  • 2022-12-23
  • 2021-07-23
猜你喜欢
  • 2021-06-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案