function ImagePreview(width,height,url) 
{
//  <a href="" onClick="ImagePreview(0, 0, 'img.jpg'); return false;"></a>
  winName = "_blank";
  theURL = url;
  page_height = (height != '')?height+20:500+20;
  page_width = (height != '')?width+20:600+20;
//  toolbar = (exp_bar == 1)?'yes':'no';
  toolbar = 'no';
  page_top = Math.round((screen.height-page_height)/2);
  page_left = Math.round((screen.width-page_width)/2);
  size = "width="+page_width+",height="+page_height+",top="+page_top+",left="+page_left;
    features = 'status=yes,toolbar='+toolbar+',scrollbars=no,resizable=yes,'+size;
    var newWnd = window.open("",winName,features);
    newWnd.document.write("<html>");
    newWnd.document.write("<title>www.ausragruodis.lt - Image Preview</title>");
    newWnd.document.write("<body leftmargin='0' marginwidth='0' topmargin='0' marginheight='0'>");
    newWnd.document.write("<table width='100%' height='100%' border='0' onClick='JavaScript: window.close();'><tr><td align='center' valign='middle'>");
    newWnd.document.write("<a href='#' onClick='JavaScript: window.close();'>");
    newWnd.document.write("<IMG border=0 src='" + theURL + "'>");
    newWnd.document.write("</a>");
    newWnd.document.write("</td></tr></table>");
    newWnd.document.write("</body>");
    newWnd.document.write("</html>");
    newWnd.document.close() 
}
