function showphoto(photoURL,width,height,caption)
{ 
  adjWidth = width + 0;
  adjHeight = height + 0;
  var remote = open("","",'width='+adjWidth+',height='+adjHeight+',status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no',false);
  if (remote.opener == null)
    remote.opener = window;
  remote.document.write('<html><head><title>'+caption+'</title><link rel="stylesheet" href="/style.css" type="text/css"></head><body bgcolor="#FFFFFF" topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>');
  remote.document.write('<div align="center"><img src="'+photoURL+'" width='+width+' height='+height+' alt="'+caption+'" border="0"></div>');
  remote.document.write('</body></html>');
  remote.focus();
  return remote;
}
