
// popup window for photos
function wwwPopupWindow (width, height, href, name, scrollbars, resizable) {
  if (width < 275) width = 275;
  var options = 'width=' + width + ',height=' + height;
  if (name != window.name) options += ',screenX=20,screenY=20,left=20,top=20';
  if (scrollbars) options += ',scrollbars=yes';
  else options += ',scrollbars=no';
  options += ',location=no';
  options += ',toolbars=no';
  if (resizable) options += ',resizable=yes';
  else options += ',resizable=no';
  var wnd = window.open(href, name, options);
  if (wnd && wnd.focus) wnd.focus();
  return (wnd);
}

function wwwPopup (options) {
  var href = '/pressroom/photo.php?photo=' + options;
  wwwPopupWindow(600, 490, href, 'photopage', true, true);
}
function horsePopup (options) {
  var href = '/horsesforsale/photo.php?photo=' + options;
  wwwPopupWindow(600, 490, href, 'photopage', true, true);
}
function eventPopup (options) {
  var href = '/whatweoffer/photo.php?photo=' + options;
  wwwPopupWindow(600, 490, href, 'photopage', true, true);
}