// this section to create popups for adding photos
function popUp4(id,table,image1)
  { 
  if (document.all)
        var xMax = screen.width, yMax = screen.height;
  else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;
    var xOffset = (xMax - 430)/2, yOffset = (yMax - 560)/2;
  loc = "includes/popup4.php?id=" + id + "&table=" + table + "&image1=" + image1;

// alert(loc);

  details = "width=430,height=560,resizable=no,screenX=" +xOffset+ ",screenY=" +yOffset+ ",top=" +yOffset+ ",left=" +xOffset;
  window.open(loc,"captions",details);
  return false;
  }

// this section to clear form fields of their default text when clicked
function clearMe(formfield)
  {
  if (formfield.defaultValue == formfield.value)
    formfield.value = "";
  }
