// **********************************************************
// Функция для открытия увеличенного изображения в новом окошке
// **********************************************************

function photo() {

  var aboutwindow = window.open("","ampliacion", "width=524, height=288,left=300,top=250");
  aboutwindow.document.open();
  aboutwindow.document.write("<TITLE>Новогодняя лотерея</TITLE>");
  aboutwindow.document.write('<BODY bgcolor="#ffffff" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 onload="window.focus()"><table align=center width=100% height=100%><tr><td valign=middle><center><img src="/temp/loto.gif" width="524" height="288" border="0"></center></td></tr></table></BODY>');
  aboutwindow.document.close();
}