var myPhotoWindow = null;
function showphoto (aTitle, aPhoto, aWidth, aHeight) {
//  var myContent;
  if (!myPhotoWindow || myPhotoWindow.closed) {
    myPhotoWindow = window.open('','photo','width=' + aWidth +',height=' + aHeight);
  } else {
    myPhotoWindow.resizeTo(aWidth, aHeight);
  };
  var myContent = '<HTML>';
  myContent += '<HTML><HEAD><TITLE>' + aTitle + '</TITLE></HEAD>';
  myContent += '<BODY leftmargin="0" marginheight="0" marginwidth="0" topmargin="0" onblur="window.close()">';
  myContent += '<P><IMG src="/cateringphotos/' + aPhoto + '" alt="' + aTitle + '" width=' + aWidth + ' height=' + aHeight + '></P>';
  myContent += '</BODY>';
  myContent += '</HTML>';
  myPhotoWindow.document.write(myContent);
  myPhotoWindow.document.close();
  myPhotoWindow.focus();
}
