﻿function imgpreview(url)
{
var newImg = window.open("","limatImgPreview",config="height=350,width=350,resizable=1,toolbar=0,location=0")
newImg.document.close();
newImg.document.open();
newImg.document.write("<html><head><title>Limat - לימת</title></head><body bgcolor=\"#6a757d\">");
newImg.document.write("<table height=\"100%\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr height=\"100%\" width=\"100%\"><td height=\"100%\" width=\"100%\" align=\"center\" valign=\"middle\">");
newImg.document.write("<img src=\""+url.replace(/[\']/g,'\\\'')+"\" onclick=\"window.close()\" alt=\"\" />");
newImg.document.write("<script type='text/javascript'> document.oncontextmenu = new Function(\"return false\") </sc"+"ript>");
newImg.document.write("</td></tr></table>");
newImg.document.write("</body></html>");
newImg.window.focus();
}