// JavaScript Document

function jsPopUpWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function jsCloseWindow() {
  window.close();
}

