//ouverture du profil d'un membre dans une popup
//cette popup ne sera bloquée au premier plan
function AffichePopup(page,largeur,hauteur,scrollbar){
	var winProfil;
	if(scrollbar) 
		IsScroll = 1;
	else 
		IsScroll = 0;
	winProfil = window.open(page,'_blank','toolbar=0, location=0, directories=0, status=0, scrollbars='+IsScroll+', resizable=0, copyhistory=0, menuBar=0, width='+largeur+', height='+hauteur); 
	winProfil.focus();
}
