function f_openPopup ( astr_URL, aint_width, aint_height, astr_windowName )
{	// centrage de la popup
	if ( aint_width == '' ) aint_width = 500;
	if ( aint_height == '' ) aint_height = 400;

	decalagegauche = ( screen.width - aint_width ) / 2;
	decalagehaut = ( screen.height - aint_height ) / 2;
	
	// 30-10-2002 (JB)
	if ( astr_URL.substring(astr_URL.lastIndexOf(".") + 1).toUpperCase() != "EXE" ) {
		fenetre = window.open (astr_URL, astr_windowName, 'locationbar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,width=' + aint_width + ',height=' + aint_height + ',left=' + decalagegauche + ',top=' + decalagehaut);
		fenetre.focus();
	} else {
		window.location.href = astr_URL;
	}	
}