var faux = null;

function comment(pic, stitle) {
  faux = window.open('','newWin','dependent,resizable=no,top=200,left=10,width=270,height=200');
  var fd = faux.document;
  fd.open();
  fd.write('<html><head><title>' + stitle + '</title></head>');
  fd.write('<body bgcolor="#ffffff" onLoad="window.focus()" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  fd.write('<img src="../images/photos/' + pic + '">');
  fd.write('</body></html>');
  fd.close();
}

