// display larger version of thumbnails
function dispImage(iname,iwidth,iheight) {
    dd = "/";        // Directory separator
    ipath = "images";
    myWindow = window.open("", "", "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + (iwidth+20) + ",height=" + (iheight+60));
    myWindow.document.open();
    myWindow.document.writeln("<HTML><HEAD>");
    myWindow.document.writeln("<LINK REL=stylesheet HREF=franklin.css TYPE=text/css>");
    myWindow.document.writeln("<TITLE>Franklin Lodge Photo - Click on image to close window</TITLE></HEAD>");
    myWindow.document.writeln("<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=#ccccff >");
    myWindow.document.writeln("<TABLE ALIGN=center BORDER=0 CELLSPACING=0 CELLPADDING=10><TR><TD ALIGN=center VALIGN=middle>");
    myWindow.document.writeln("<A HREF='javascript:window.close()'>");
    myWindow.document.writeln('<IMG BORDER=1 ' + 'SRC="' + ipath + dd + iname + '.jpg" WIDTH=' + iwidth + ' HEIGHT=' + iheight + '>');
    myWindow.document.writeln("<BR><CENTER>Close window</CENTER>");
    myWindow.document.writeln("</A>");
    myWindow.document.writeln("</TD></TR></TABLE>");
    myWindow.document.writeln("</HTML>");
    myWindow.document.close();   
}

