//
// Default admin Flex-PHP js file
//
// The base path for ajax pages is:  ajaxweb
// The base path for images is:      imagesweb
//

function confirm_box(message)
{
  var answer = confirm(message)
  if (answer){
    return true;
  } else {
    return false;
  }
}

function show_photo_path(path)
{
  document.getElementById("photo_path").innerHTML = '<input type="text" name="temp_photo_path" id="temp_photo_path" class="text" value="' + path + '" />';
  document.getElementById("temp_photo_path").focus();
  document.getElementById("temp_photo_path").select();
}
