<!--
function popup(url, wide, high) {
  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();
}
//-->