// --- identification du fureteur --- //
var intVersion = parseInt(navigator.appVersion);
var boolIE = ((document.all) && (intVersion >= 4)) ? true : false;
if ((navigator.appName == "Netscape") && (intVersion < 5)) {
	strReference="document.layers"
} else {
	strReference="document.all"
	strStyle=".style";
}

// --- popups --- //
function popImage(strImage, intLargeur, intHauteur) {
	var X = "";
	if (boolIE) {
		if (intHauteur > 650) {
			X = window.open(strImage, 'image', 'width='+(intLargeur+37)+',height=650,scrollbars=1');
		} else {
			X = window.open(strImage, 'image', 'width='+(intLargeur+20)+',height='+(intHauteur+24));
		}
	} else {
		if (intHauteur > 650) {
			X = window.open(strImage, 'image', 'width='+(intLargeur+34)+',height=650,scrollbars=1');
		} else {
			X = window.open(strImage, 'image', 'width='+(intLargeur+17)+',height='+(intHauteur+17));
		}
	}
}
