function fct_whatbrowser(){
	if(document.layers){
		// NN4
		type_browser = 1;
	}
	if(document.all){
		// IE
		if(isPPC()) {
			// IE MAC
			thisbrowser = 3;
			//alert("IE MAC")
		}else{
			// IE PC
			type_browser = 2;
			//alert("IE PC")
		}
	}
	if(!document.all && document.getElementById){
		// NN6
		//alert("NN6")
		type_browser = 3;
	}
	return type_browser;
}




/*

****************************************
******** SITE USE THIS FUNCTION ********
****************************************

CLUB23

INTERFERENCES

*/
