

  function photoFileSet() {
    var localFilename = document.forms[0].userfile.value;
    var aDiv = getObjectByName('PreviewDIV');
    aDiv.innerHTML = '<img src="file:///' + localFilename + '">';
  }

  function confirmPhotoDelete(redirURL) {
    if (confirm('Are you sure you want to delete this photo?')) {
      window.location.href = redirURL;
    }
  }

