function imageView(imageUrl,caption) {
  imageWindow = window.open("","imageWindow", "width=700,height=650,scrollbars=yes,resizable=yes,alwaysRaised=yes,menubar=no,toolbar=no");
  imageWindow.focus();
  imageWindow.document.open();
  imageWindow.document.writeln('<html><head><title>Residence Life, RPI ' + caption +  '</title><link rel="stylesheet" href="http://www.rpi.edu/dept/cct/apps/reslife/en_US/default/reslife.css" type="text/css"></head>');
  imageWindow.document.writeln('<body>');
  imageWindow.document.writeln('<div align="center">');
  if (caption != "") {
    imageWindow.document.writeln('<h2 style="color:#999;">' + caption + '</h2>');
  } else {
    imageWindow.document.writeln('<p style="margin-top:1em">&nbsp;</p>');
  }
  imageWindow.document.writeln('<p><img src="' + imageUrl + '" alt="' + caption + '" /></p>');
  imageWindow.document.writeln('<p><a href="javascript:self.close();" style="color:#999">close window</a></p>');
  imageWindow.document.writeln('</div></body></html>');
  imageWindow.document.close();
}
