var popUpWindow = null; // global variable

function fl_openWindow(url, title, options)
{
  if(popUpWindow == null || popUpWindow.closed)

  {
    popUpWindow = window.open(url, title, options);
  }
  else
  {
    popUpWindow.focus();
  };
}