// Java Document
function showimg(src, w, h) {

PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width="+w+",height="+h);
PreView.document.open();
PreView.document.write("<HTML><HEAD></HEAD>");
PreView.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
PreView.document.write('<a href="javascript:window.close();"><img src=' + src + ' width=' + w + ' hieght=' + h + ' border=0></a>');
PreView.document.write("</BODY></HTML>");
PreView.document.close();
}
