/**
 * Name of the images according to their index.
 */
var gImageName = ["Images/images.emilie.0.jpg",
			      "Images/images.null.1.jpg",
			      "Images/images.null.2.jpg",
			      "Images/images.null.3.jpg",
			      "Images/images.balma05.jpg",
				  "Images/images.prague.jpg",
				  "Images/smallGeckoPalace1.jpg",
				  "Images/images.patSteph.7.jpg"];

/**
 * Name of the concert page images according to their index (start at 100)
 */
var gConcertImageName = ["Images/concerts.0.jpg"];

/**
 * Width of the images according to their index.
 */
var gImageWidth = [338,		// 0
				   0,		// 1
				   0,		// 2
				   0,		// 3
				   640,		// 4
				   450,		// 5
				   800,		// 6
				   375		// 7
				   ];

var gConcertImageWidth = [640]; // 100
/**
 * Height of the images according to their index.
 */
var gImageHeight = [510,	// 0
				    0,		// 1
				    0,		// 2
					0,		// 3
					427,	// 4
					576,	// 5
					576,	// 6
					500		// 7
					];

var gConcertImageHeight = [393]; // 100

/**
 * Open an image in a popup window which size fits the image size.
 */
function openImage(pImageNb)
{
		// Display the main window of the GP web site.
		if
			(pImageNb < 100)
		{
			lParam ="height="+gImageHeight[pImageNb]+",width="+gImageWidth[pImageNb]+",resize=no";
			window.open("images.popup.html?"+gImageName[pImageNb],
					"",
					lParam);
		}
		else
		{
			lParam ="height="+gConcertImageHeight[pImageNb-100]+",width="+gConcertImageWidth[pImageNb-100];
			window.open("images.popup.html?"+gConcertImageName[pImageNb-100],
					"",
					lParam);
		}
}


