function submitPicToSlot(slot, src, width, height)
{
  document.forms[slot].src.value = src;
  document.forms[slot].width.value = width;
  document.forms[slot].height.value = height;
}
