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=185,left=185,screenY=5,top=5,toolbar=0,location=0,menubar=0,scrollbars=0');
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>Alpine Game Meats</TITLE>");
PreView.document.write("</HEAD><BODY background=images/marble.jpg TEXT=FFFFFF><center>");
PreView.document.write("<body onBlur='window.focus()'>");
PreView.document.write("<CENTER><B><FONT SIZE=4>" + title + "</FONT></B><HR>");
PreView.document.write("<IMG border=3 HSPACE=0 VSPACE=0 WIDTH='" + wd + "' HEIGHT='" + ht + "' " + "SRC='" + selection + "'>");
PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Close' " +
"onClick='window.close()'></FORM>");
PreView.document.write("</CENTER>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
    }
