function o(photo,path) {
  // '31-10-2006 v1.1
  var objWindow = null;
  var strPath = 'popup.aspx?image=' + photo + '&path=' + path; 
  objWindow = window.open(strPath,'popup','status=yes,resizable=yes,width=620,height=625');
  try {
    objWindow.focus();
  } catch(e) {
  }
  return void(null);
}