function change(object, url) {

alert('in function change');
alert('twindow = '+twindow);
popup(url);
}

function popup(url) {
  winparams = 'scrollbars=yes, width=615, height=440, resizable=yes, status=yes';
  if (!twindow){
    twindow = window.open('','textwin', winparams);
  }

  if (twindow.closed) {
    twindow=window.open(url,'textwin', winparams);
    twindow.focus();
  }
  else {
    twindow.location = url;
    twindow.focus();
  }
}

function exit() {
  if (twindow && twindow.closed == 0) { twindow.close(); }
}

twindow='';
