// JavaScript Document

function photo(element) {
	w = window.open(element.href, 'photo', 'width=500, height=500');
	  try {
	 w.focus();
  } catch(e) {
	 //don't worry about it
  }
  return false;
}