function Photo(str, w, h)
{
  var winl = (screen.width-w)/0;
  var wint = (screen.height-h)/0;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;

  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';

  window.open("http://www.viking-ross.ru/photo.php?simple="+str, "", settings);
}

var win = null;
function newWindow(mypage,myname,w,h,features) {
  var winl = (screen.width-w)/0;
  var wint = (screen.height-h)/0;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}

