﻿function imgpop(url, wname, w, h, link) {
    wname = "_blank";
    if (link != "") {
        hreftext = "<a href='" + link + "' target='_blank'>";
    } else {
        hreftext = "<a href='javascript:window.close();'>";
    }
    htmltext = "<html><head><title>Different View</title></head><body style='margin:0px'>" + hreftext + " <img src='" + url + "'  width='" + w + "' height='" + h + "' border='0'>";
    htmltext += "</a>";
    htmltext += "</body></html>";
    newWindow = window.open("", wname, "toolbar=no,titlebar=no,menubar=no,scrollbars=no,resizable=yes,status=no,location=no,directories=no,height=" + h + ",width=" + w);
    newWindow.document.open("text/html");
    newWindow.document.write(htmltext);
    newWindow.document.close();
    newWindow.focus();
}