function OpenWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
  
function CloseWindow(theURL,winName,features) {
  window.close();
}