_wndPopup = null;

function popupImage(strTitle, strURL, nWidth, nHeight) {
	if ((_wndPopup != null) && (!_wndPopup.closed)) {
		_wndPopup.close();
		_wndPopup = null;
	}
	
	_wndPopup = open('', 'MSPIPopup', 'width=' + nWidth + ',height=' + nHeight + ',left=' + ((screen.width - nWidth) / 2) + ',top=' + ((screen.height - nHeight) / 2));
	_wndPopup.document.write('<html><head><title>' + strTitle + '</title></head>');
	_wndPopup.document.write('<body leftMargin="0" topMargin="0" marginwidth="0" marginheight="0"><a href="javascript:window.close();"><img src="' + strURL + '" border="0" alt="Cliquez ici pour fermer cette fenêtre"></a>');
	_wndPopup.document.write("</body></html>");
	_wndPopup.document.close();
}