function OpenWin(theURL,winName,features) { // Next_Solutions Y-M_Script2001
  var W_Open;                                           
  W_Open=window.open(theURL,winName,"width=400,height=380,scrollbars=yes,resizable=yes");
  W_Open.focus();
  ww = 400;
  wh = 380;
  xp = (screen.width - ww ) / 2;
  yp = (screen.height - wh ) / 2.4;
  W_Open.window.moveTo(xp,yp);
}