<!--
function viewFull(img, wide, high) {
  var url = '';
  url = '/photo/?img=' + img + '&w=' + wide + '&h=' + high;
  var properties = '';
  properties = 'width=' + wide + ',height=' + high + ',toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,location=no';
  newWin = window.open(url,'newWin',properties);
  newWin.focus();
}
//-->