function showImage(sImgUrl, sText)
{
  var popUpWin = window.open("","myWin",'resizable=no,scrollbars=no,width=400,height=400');
  popUpWin.focus();
  popUpWin.document.write("<html>");
  popUpWin.document.write("<head><title>Galley</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\"/><link rel=stylesheet href=\"css/style.css\" type=\"text/css\">");
  popUpWin.document.write("</head>");
  popUpWin.document.write("<body leftmargin=\"0\" topmargin=\"0\" style=\"background-image: none;background-color: #ffffff;\"><SCRIPT>");
  popUpWin.document.write("function imageLoaded()");
  popUpWin.document.write("{");
  popUpWin.document.write("  var mto_x = window.parent.window.screenTop + 10;");
  popUpWin.document.write("  var mto_y = 40;");
  popUpWin.document.write("  width  = cur_img.width+30;");
  popUpWin.document.write("  height = cur_img.height+130;");
  popUpWin.document.write("  new_x = ((screen.availWidth / 2)- (width / 2));");
  popUpWin.document.write("  new_y = ((screen.availHeight / 2) - (height / 2));");
  popUpWin.document.write("  if(new_x<10)new_x = 10;");
  popUpWin.document.write("  if(new_y<10)new_y = 10;");
  popUpWin.document.write("  window.moveTo( new_x, new_y);");
  popUpWin.document.write("  window.resizeTo( width, height);");
  popUpWin.document.write("}");
  popUpWin.document.write("function imageClick()");
  popUpWin.document.write("{");
  popUpWin.document.write("  window.close()");
  popUpWin.document.write("}");
  popUpWin.document.write("</SCRIPT>");
  popUpWin.document.write("<BODY style=\"background-color: #ffffff\">");
  popUpWin.document.write("<center><br/><a href=\"#\" onclick=\"imageClick()\"><IMG id=\"cur_img\" SRC=\""+sImgUrl+"\" onload=\"imageLoaded()\" border=\"0\"></a>");
  popUpWin.document.write("<table align=\"center\" cellpading=0 cellspacing=0 bgcolor=\"#ffffff\">");
  popUpWin.document.write("<tr>");
  popUpWin.document.write("<td>");
  popUpWin.document.write(sText);
  popUpWin.document.write("</td>");
  popUpWin.document.write("</tr>");
  popUpWin.document.write("</table></center>");
  popUpWin.document.write("</BODY></body></html>");
}

