	  function showImage(name) {
	    var inc_y = 100;
	    var inc_x = 30;
	    params = "top=50, left=200,width=600, height=500, 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>TangoFormaci&oacute;n - просмотр фото</title></head>");
	    popupWin.document.write("<sc"+"ript language = JavaScript>");
	    popupWin.document.write("function closeWindow(){");
	    popupWin.document.write("parent.window.close() };");
	    popupWin.document.write("</sc"+"ript>");
	    popupWin.document.write("<body leftmargin='10' topmargin='10' marginwidth='10' marginheight='10' bgcolor='#000000'><a href=''><img src='"+name+"' border='0' style='border: 1px solid #333333;' 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();
	  }

