if (document.getElementById) {
	var oBlocContacts = document.getElementById('aContacts');
	var oBlocPopContacts = document.getElementById('popContacts');

	function fnContacts() {		
		var oBlocFermer = document.getElementById('fermer');
		oBlocFermer.onclick = function() { fnCacherBlocContacts(); };
	}
		
	function fnAfficherBlocContacts() {
		oBlocPopContacts.style.display = 'block';
		
		var XHR = new XHRConnection();
		if (XHR) {
			XHR.setRefreshArea('AjaxRefreshArea');
			XHR.appendData('dossier','contacts');
			XHR.sendAndLoad('/occasions/occaz/tools/stats/envoi-AJAX.php', "POST");
		}
	}
		
	function fnCacherBlocContacts() {		
		oBlocPopContacts.style.display = 'none';
	}
	
	function fnOuvrirAllopass(sLien) {
		window.open(sLien,'phone','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=300, height=340');
	}
	
	function fnOuvrirAllopassCB() {
		window.open('https://secure.allopass.com/show_ccard.php4?LG=FR&SITE_ID=129692&DOC_ID=354895', 'ccard',
		'toolbar=0, location=0, directories=0, status=1, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=550, height=575');
	}

	fnContacts();
}

