
function openImage(iURL,iWidth,iHeight) {
iWidth += 40;
iHeight += 40;

win3 = window.open("", "pic", "width=" + iWidth + ",height=" + iHeight + ",scrollbars=yes,resizable=yes"); 
win3.document.writeln("<html><body style=\"margin:10; padding:0;\">");
win3.document.writeln("<div align=center ><img src=\"" + iURL + "\"></div>");
win3.document.writeln("<div align=center style=\"margin:5px 0 0 0; font-size:10px; font-family:arial;\">");
win3.document.writeln("<a href='javascript:window.close()'>Close Window</a></div></body></html>");
}

