<!-- 
function showImage(iWidth, iHeight, sImage) {
 ImageWin = window.open("", "", "resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,height=" + iHeight + ",width=" + iWidth)
 ImageWin.document.write("<title>Books of Faith</title>")
 ImageWin.document.write("<body onclick='self.close()'>")
 ImageWin.document.write("<img src='" + sImage + "' border='0' />")
 ImageWin.document.write("</body>")
}
// -->