function NewWindow(href,w,h,title) {
var win;
newh=h+52;
neww=w+16;
win = window.open("","imageviewer","width="+neww+",height="+newh+",location=no, menubar=no, resizable=yes, status=no, toolbar=no, top=50, left=50;");
win.document.open();
win.document.write("<html><head><title>"+title+"</title>");
win.resizeTo(neww,newh);
win.document.write("</head><body leftmargin=2 topmargin=2 rightmargin=2 bottommargin=2 margin-left=2 margin-top=2 margin-right=2 margin-bottom=2>");
win.document.write('<div align=center valign=middle><img src="'+href+'"></div>');
win.document.write("<div align=center valign=middle STYLE='font-size: 8pt; font-family: Tahoma; padding: 3 0 0 0; font-weight: bold'>"+title+"</div>");
win.document.write("</body></html>");
win.document.close();
win.focus(); 
}
