function pop(x)
{ if(x=="")
  { return false;
  }
  else
  { winURL = "new_item_display.php?record_num="+x;
    popWin = window.open(winURL,"window","toolbar=no,location=no,directories=no,menubar=no,resizable=yes,width=500,height=500,scrollbars=yes");
  }
}