function display_image(selection,title,wd,ht)
{
var wd1 = wd + 60;
var ht1 = ht + 120;
PreView = window.open('', 'Preview','width='+ wd1 +',height='+ ht1 +',directories=0,status=0,resizable=0,copyhistory=0,screenX=175,left=175,screenY=25,top=25,toolbar=0,location=0,menubar=0,scrollbars=0');
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>Bundacreek Eco Lodge</TITLE>");
PreView.document.write("<LINK REL=stylesheet TYPE=text/css HREF=display.css>");
PreView.document.write("</HEAD><BODY><center>");
PreView.document.write("<body onBlur='window.focus()'>");
PreView.document.write("<CENTER><B><FONT SIZE=4>" + title + "</FONT></B><BR><BR>");
PreView.document.write("<IMG BORDER=4 HSPACE=1 VSPACE=1 WIDTH='" + wd + "' HEIGHT='" + ht + "' " + "SRC='" + selection + "'>");
PreView.document.write("<br><br><FORM><INPUT TYPE='button' VALUE='Close' " +
"onClick='window.close()'></FORM>");
PreView.document.write("</CENTER>");
PreView.document.write("<br></BODY></HTML>");
PreView.document.close();
    }
