// JavaScript Document
function open_win(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function close_win() { //v2.0
  window.close(this);
}