function popitup(url) {
  newwindow = window.open(url,'_lrappinfo');
  if (window.focus) {
    newwindow.focus();
  }
  return false;
}