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