function openWindow( imgUrl, width, height, title ){
    options = "width="+width+",height="+height+",location=no,toolbar=no"+
        "status=no,menubar=no,resizable=yes,scrollbars=yes";
    newWindow = window.open('', "preview", options );
    newWindow.document.open();
    newWindow.document.write("<html><head><title>"+title+"</title></head>"+
        "<body style=\"margin: 0px\" onClick=\"window.close()\"><img src=\""+
        imgUrl+"\"></body></html>");
    newWindow.document.close();
}