function openWindow(theURL,winName,params) { //v2.0
  newWindow = window.open(theURL,winName,params);
  newWindow.focus();
}

function openWindowEx(theURL,winName,scrollbars,resizable,width,height) { //v2.0
  params = "scrollbars=" + scrollbars + ",resizable=" + resizable + ",width=" + width + ",height=" + height;

  newWindow = window.open(theURL,winName,params);
  
  newWindow.focus();
}
