var ua = navigator.userAgent.toLowerCase();
	if( (ua.match(/blackberry/i))
		||(ua.match(/android/i))
		||(ua.match(/htc/i))
		||(ua.match(/nokia/i)) 
		||(ua.match(/palm/i))
		||(ua.match(/samsung/i))
		||(ua.match(/sec/i))
		||(ua.match(/siemens/i))
		||(ua.match(/lg/i))
		||(ua.match(/mot/i))
		||(ua.match(/sonyericsson/i))
		||(ua.match(/iphone/i))
		||(ua.match(/ipod/i))
		||(ua.match(/ipad/i))
		)
	{
		window.location.href='fr/';
	}

