// JavaScript Document
function Ps_openWindow(theURL,winName,features) { //v2.0
  var New_Window = window.open(theURL,winName,features);
  New_Window.focus();
}