function popupClientWindow(url) {
  var newwindow;
  newwindow=window.open(url,'ClientWindow','height=550,width=720,scrollbars=1');
  if (window.focus) {newwindow.focus()}
}