// POPUP D'ACCUEIL
function fermer() {
	document.getElementById('background').style.display = 'none';
	document.getElementById('voushabitez').style.display = 'none';
	var xhr;
	if (window.XMLHttpRequest) {
		xhr = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		xhr = new ActiveXObject('Microsoft.XMLHTTP');
	} 
	xhr.open('POST','index.php?habitez=france',true);
	xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded');			
	xhr.send('');		
}
// AFFICHER LES TARIFS
var tab_numero = new Array();
tab_numero['metropole'] = new Array();
tab_numero['metropole']['local'] = "08 11 65 43 43";
tab_numero['metropole']['9'] = "08 21 75 75 75";
tab_numero['metropole']['12'] = "08 21 38 38 38";
tab_numero['metropole']['14'] = "08 26 38 38 38";
tab_numero['metropole']['15'] = "08 26 38 38 38";
tab_numero['metropole']['22'] = "08 91 65 43 43";
tab_numero['metropole']['34'] = "08 92 233 233";
tab_numero['reunion'] = new Array();
tab_numero['reunion']['local'] = "08 11 38 38 38";
tab_numero['reunion']['1'] = "08 90 75 75 75";
tab_numero['reunion']['11'] = "08 21 38 38 38";
tab_numero['reunion']['14'] = "08 26 38 38 38";
tab_numero['reunion']['20'] = "08 91 38 38 38";
tab_numero['reunion']['31'] = "08 92 38 38 38";
tab_numero['reunion']['1,23 € /appel + 31'] = "08 99 38 38 38";
tab_numero['guyane'] = new Array();
tab_numero['guyane']['local'] = "08 11 38 38 38";
tab_numero['guyane']['1'] = "08 90 75 75 75";
tab_numero['guyane']['10'] = "08 21 38 38 38";
tab_numero['guyane']['13'] = "08 26 38 38 38";
tab_numero['guyane']['19'] = "08 91 38 38 38";
tab_numero['guyane']['28'] = "08 92 38 38 38";
tab_numero['guyane']['1,13 € /appel + 28'] = "08 99 38 38 38";

var tarif_local = new Array();
tarif_local['metropole'] = '0,92';
tarif_local['reunion'] = '0,85';
tarif_local['guyane'] = '0,79';

function afficher(v,dest) {
	v = v.split('|');
	document.getElementById('numero').innerHTML = tab_numero[dest][v[0]];
	document.getElementById('indicatif').innerHTML = v[1];
	
	t = v[0];
	b_t = document.getElementById('tarif');
	b_adsl = document.getElementById('adsl');
	
	if(t=='local') {
		b_t.innerHTML = "TARIF LOCAL, soit <u>"+tarif_local[dest]+" € pour une heure</u> de communication en heures creuses";
		b_adsl.style.display = 'none';
	} else {
		b_t.innerHTML = t + ' cts/min';
		/*
		if(t=='22' || t=='34') {
			b_adsl.innerHTML = 'Ligne dégroupée? Cliquez ici';
			b_adsl.style.display = 'block';
		} else {
			b_adsl.style.display = 'none';
		}
		*/
	}
}
// ADSL
function change_adsl() {
	c = document.getElementById('numero');
	d = document.getElementById('adsl');
	if(c.innerHTML=='08 91 38 38 38') {
		c.innerHTML = '08 91 65 43 43';
		d.innerHTML = 'Ligne France Télécom? Cliquez ici';
	} else if(c.innerHTML=='08 92 38 38 38') {
		c.innerHTML = '08 92 233 233';
		d.innerHTML = 'Ligne France Télécom? Cliquez ici';
	} else if(c.innerHTML=='08 91 65 43 43') {
		c.innerHTML = '08 91 38 38 38';
		d.innerHTML = 'Ligne dégroupée? Cliquez ici';
	} else if(c.innerHTML=='08 92 233 233') {
		c.innerHTML = '08 92 38 38 38';
		d.innerHTML = 'Ligne dégroupée? Cliquez ici';
	}
}
// TEMOIGNAGES
var obj=0;
var pos=0;
var mouv;
var defil_ok=true;
var largeur = 646;
var tot = 4;
function defil(type) {
	clearInterval(mouv);
	f_d = document.getElementById('fd');
	f_g = document.getElementById('fg');
	if(type=='plus') {
		if(obj<largeur*tot) {			
			obj+=largeur;
			mouv = setInterval('mouv_bck('+obj+')',25);
		}
		if(obj==(largeur*tot)) {
			f_d.style.visibility = 'hidden';
		}
		f_g.style.visibility = 'visible';
	}
	if(type=='moins') {
		if(obj>0) {			
			obj-=largeur;
			mouv = setInterval('mouv_bck('+obj+')',25);
		}
		if(obj==0) {
			f_g.style.visibility = 'hidden';
		}
		f_d.style.visibility = 'visible';
	}	
}	
function mouv_bck(obj) {
	var c = document.getElementById('cont_temoignages');
	pos += (obj-pos)/5;
	if(Math.abs(obj-pos)<2) {
		pos=obj;
		clearInterval(mouv);
	}
	bj = pos*(-1);		
	c.style.marginLeft = bj+'px';
}

