// JavaScript Documentfunction afficheDiv(obj){var el = document.getElementById(obj);if(el.style.display != "block"){el.style.display = "block";}else{el.style.display = "none";}}function afficheDiv2(obj){	var el = document.getElementById(obj);	el.style.display = "block";}function cacheDiv(obj){	var el = document.getElementById(obj);	el.style.display = "none";}function typeannonce0(){	afficheDiv2('txt8lignes');	cacheDiv('txt5lignes');	cacheDiv('quatrephotos');	cacheDiv('photo360');	afficheDiv2('paypal1');	cacheDiv('paypal2');	cacheDiv('paypal3');}function typeannonce1(){	afficheDiv2('txt5lignes');	cacheDiv('txt8lignes');	afficheDiv2('quatrephotos');	cacheDiv('photo360');	afficheDiv2('paypal2');	cacheDiv('paypal1');	cacheDiv('paypal3');}function typeannonce2(){	afficheDiv2('txt5lignes');	cacheDiv('txt8lignes');	afficheDiv2('photo360');	cacheDiv('quatrephotos');	afficheDiv2('paypal3');	cacheDiv('paypal2');	cacheDiv('paypal1');}	
