// **********************************************************
// Функция для открытия увеличенного изображения в новом окошке
// **********************************************************

function photo() {

  var aboutwindow = window.open("","ampliacion", "width=600, height=307,left=200,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 class="nbord" src="img/mapau.jpg" width="600" height="307" border="0"></center></td></tr></table></BODY>');
  aboutwindow.document.close();
}
