function popup(href, width, height)
{
  if(!window.focus){
    return true;
  }
  window.open(href, '', 'width=' + width + ',height=' + height + ',menubar=no,toolbar=no,statusbar=no,scrollbars=yes');
  return false;
}

