function InputFocus(e)
{
  var color = "#eeeeee";
  reColor(e, color);
}

function InputBlur(e)
{
  var color = "#f8f8f8";
  reColor(e, color);
}

function reColor(e, color)
{
  e.style.backgroundColor = color;
}

function fotoPopup(item)
{
  var url     = "foto_popup.php?foto=" + escape(item) + "";
  var title   = "Foto - Originele groote";
  var options = "status=no, width=400, height=300, scrollbars=no";

  window.open(url, title, options);
}

function resizePopup ()
{
  var width  = document.images.foto.width + 50;
  var height = document.images.foto.height + 100;

  window.resizeTo(width, height);
}
