function takeGood (good, qty)
{
  if (qty) {
    msg = open("take.pl?good=" + good + "&qty=" + qty, 'takeMessage',
      "height=" + (300) + "," +
      "width="  + (300) + "," +
      "fullscreen=no,location=no,menubar=no,resizable=no,status=no,titlebar=yes,toolbar=no,scrollbars=yes"
    );
    msg.focus();
  }
}


