function display_image(selection,title,wd)
{
var title1 = title + 0;
var wd1 = wd + 0;
PreView = window.open('', 'Preview','width=270,height=220,directories=0,status=0,resizable=0,copyhistory=0,screenX=1,left=1,screenY=1,top=0,toolbar=0,location=0,menubar=0,scrollbars=0');
PreView.document.open();
PreView.document.write("<HTML><HEAD><b>" + title + "</b>");
PreView.document.write("<TITLE> + title + </TITLE>");
PreView.document.write("</HEAD><BODY topmargin=0 leftmargin=1 rightmargin=0 bottommargin=0>");
PreView.document.write("<IMG BORDER=0 HSPACE=0 VSPACE=0 WIDTH='270'220' " + "SRC='" + selection + "'>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();}