<!--
var newWindow = null;


function openWin(winURL, winName, features) {

    newWindow = window.open(winURL,winName, features);
    newWindow.focus();
    }

function closeWin() {

  if (newWindow != null){
  newWindow.close();
  newWindow = null;
  }


}

//-->
