function zoomThePicture(imageName,imageHeight,imageWidth,alt)
  {
  var topPos, leftPos, windowName, pos;

  topPos = (768 - (imageHeight + 30)) / 2;
  leftPos = (1024 - (imageWidth + 10)) / 2;

  windowName = imageName.substr(0,(imageName.length - 4));
  pos = windowName.indexOf("-",0);
  windowName = windowName.substring(0,pos) + windowName.substring(pos+1,windowName.length);

  newWindow = window.open("",windowName,"height=" + imageHeight + ",width=" + imageWidth + ",left=" + leftPos + ",top=" + topPos);
  newWindow.document.open();
  newWindow.document.write('<HTML><HEAD><TITLE>'+alt+' - пианино, рояли, фортепиано, музыкальные инструменты, купить пианино, продать пианино, салон Лира, кобинат Лира.</TITLE>');
  newWindow.document.write('<META http-equiv="Content-Type" content="text/html; charset=windows-1251">');
  newWindow.document.write('<META name="description" content="Комбинат музыкальных инструментов Лира - пианино и рояли, фортепиано и другие музыкальные инструменты в музыкальном магазине Лира.">');
  newWindow.document.write('<META name="keywords" content="пианино, рояли, фортепиано, купить пианино, продать пианино, б/у пианино, настройка пианино, салон Лира, комбинат Лира"></HEAD>');
  newWindow.document.write('<BODY leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0" bgcolor="#ffffff">');
  newWindow.document.write('<IMG src="/im/' + imageName + '" height="' + imageHeight + '" width="' + imageWidth + '" alt="' + alt + '" border="0">');
  newWindow.document.write('</BODY></HTML>');
  newWindow.document.close();
  newWindow.focus();
  }

function openWin(file, title, params)
  {
  w = window.open(file, title, params);
  }