var pays
try{
	pays = data( "pays", 0 )
	if( pays == "NaN" ) 
		pays = 0
	pays *= 1
}catch( e ){
	pays = 0
}

var xhr = null
try{ 
	xhr = new XMLHttpRequest()
}
catch( e ){
	xhr = new ActiveXObject( "Microsoft.XMLHTTP" )
}
if(xhr) {
	xhr.open( "GET", "./lang/" + pays + ".xml", false )
	xhr.send( null )
	if(xhr.responseXML.text)
		eval( xhr.responseXML.text )
	else // Firefox
		eval( xhr.responseXML.documentElement.textContent )
}


