function lw_image_popup(image, width, height, title)
{
	h = height;
	w = width;

    image_popup = window.open("","","height=" + h + ",width=" + w + ",toolbar=no,menubar=no,scrollbars=yes,resizable=yes");

    var tmp = image_popup.document;

    tmp.write("<html><head><title>" + title + "</title>");
    tmp.write("<style type=\'text/css\' media=\'screen\'>");
    tmp.write("body{ margin: 0; padding: 0; }");
    tmp.write("a img { border: 0; }");
    tmp.write("</style>");
    tmp.write("</head><body>");
    tmp.write("<a href=\'javascript:self.close()\'>");
    tmp.write("<img src=\'" + image + "\' width=\'" + width + "\' height=\'" + height + "\' />");
    tmp.write("</a>");
    tmp.write("</body></html>");

    tmp.close();
    image_popup.focus();

    return false;
}
