// JavaScript Document

function showImage(name) {
  var inc_y = 70;
  var inc_x = 10;
  params = "top=20, left=20,width=1, height=1, Status=no, toolbar=no, menubar=no, location=no, directories=no, scrollbars=no";
  popupWin = window.open("","popupWin",params);
  popupWin.focus();
  popupWin.document.open();
  popupWin.document.write("<html><head><title>Фотогалерея</title></head>");
  popupWin.document.write("<script language = JavaScript>");
  popupWin.document.write("function closeWindow(){");
  popupWin.document.write("parent.window.close() };");
  popupWin.document.write("</script>");
  popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><a href=''><img src='"+name+"' border='0' name='cha1' onClick='closeWindow()' alt=''  onload='window.resizeTo(window.document.images[0].width+"+inc_x+",window.document.images[0].height+"+inc_y+")'></a></body></html>");
  popupWin.document.close();
}
