<!--
/**
 * design/planetarium-1.0/javascript/image_popup.js
 *
 * JavaScript d'ouverture des popups photos.
 *
 * @version   1.0
 * @author    OVEA <contact@ovea.com>
 * @copyright copyright 2004, 2005, 2006, OVEA
 */

function image_popup(url, width, height)
{
  // we don't want scrollbars if we don't need'em
  scrollbars = "no";
  
  // if image is larger than screen, let the window be smaller
  if (width > screen.availWidth)
  {
    scrollbars = "yes";
    width = screen.availWidth - 20;

    // add the scrollbar width (approx)
    height = height + 16;
  }

  // 27px is the usual height of the taskbar
  if (height > screen.availHeight - 27)
  {
    scrollbars = "yes";
    height = screen.availHeight - 47;

    // add the scrollbar width
    width = width + 16;
  }
  
//  url = '/image_popup.php?src=' + url;
  options =  "width=" + width + ", height=" + height + ", ";
  options += "toolbar=no, location=no, menubar=no, resizable=yes, ";
  options += "scrollbars=" + scrollbars + ", ";
  options += "status=no";

  window.open(url, 'Photo', options);
}
// -->

