<!--
imgName = null;
imgWidth = null;
imgHeight = null;

function picWindow(imgName, imgWidth, imgHeight)
{
if (imgName != null) 
        {
                if (imgHeight == null) imgHeight = 700;
                if (imgWidth == null) imgWidth = 870;
        temp = "toolbar=no,width=" + (imgWidth + 20) + ",height=" + (imgHeight + 75);
        msgWindow = window.open("","ImageViewer",temp);
        msgWindow.document.open('text/html');
                msgWindow.document.writeln('<HTML><TITLE>DL White Construction</TITLE>');
                msgWindow.document.writeln('<CENTER><IMG SRC="http://www.dlwhiteconstruction.com/images/gallery/' + imgName + '" WIDTH=' + imgWidth + ' HEIGHT =' + imgHeight + '"><BR><BR>');
                msgWindow.document.writeln('<FORM><INPUT TYPE="BUTTON" VALUE="CLOSE " onClick="window.close()"></FORM>');
        msgWindow.document.writeln('</BODY></HTML>');
        msgWindow.document.close();
                   }
}
//-->