//gestion affichage banniere salon VAD

function check_banner() {
	//si on est en page d'accueil, on affiche la pub 
	if(document.location=='http://www.zeos-france.fr/' || document.location=='http://www.zeos-france.fr/index.php'  || document.location=='http://zeos-france.fr/' 
|| document.location=='http://zeos-france.fr/index.php'  || document.location=='http://www.zeos-france.com/index.php'  || document.location=='http://www.zeos-france.com/'){
		var banniere = document.getElementById("banner_salon_vad");
		if(banniere) {
			banniere.style.visibility='visible';
		}
	};

}


//permet de verifier le referer et de gerer l'affichage d'une info specifique ;-)
function checkRef(){
	if (document.referrer) {
		var sentence = document.referrer;
		//ubuntu ?
		var findstr ="ubuntu";
		if(sentence.value!='undefined'){
			if (sentence.indexOf(findstr)!=-1) {
				//afficher infos pour ubuntu ou redirection vers page ubuntu ...
					var infoubuntu = '<center><p style="background-image:url(images/sub.jpg);font-family:Arial,Sans-Serif;font-size:15px;font-weight:bold;"><a href="Gestion-de-parc-informatique-sur.html" class="blacklink">Gestion de serveur ou de pc sous Ubuntu ?</a></p></center>';
					var DivInfoubuntu = document.getElementById("infomain");
					if(infoubuntu!=undefined) {
						DivInfoubuntu.innerHTML=infoubuntu;
					}
					
			}	//if
			
		}	//if ubuntu
		
		
		//thelia.fr ?
		var findstr ="thelia.fr";
		
		if(sentence.value!='undefined'){
			if (sentence.indexOf(findstr)!=-1) {
				//afficher infos pour ubuntu ou redirection vers page ubuntu ...
				var infothelia = '<center><p style="background-image:url(images/sub.jpg);font-family:Arial,Sans-Serif;font-size:15px;font-weight:bold;"><a href="THELIA-boutique-adaptable-a-vos.html" class="blacklink">Vous recherchez une expertise sur une boutique THELIA en environnement libre ?</a></p></center>';
				var Divinfothelia = document.getElementById("infomain");
				if(infothelia!=undefined) {
					Divinfothelia.innerHTML=infothelia;
				}
				
			}	
		}	//if thelia

	} //main if 


	var sentence = document.location.href;
		//infoF ?
		var findstr ="FIA-";
		//alert(sentence.indexOf(findstr));
		if(sentence.value!='undefined'){
			if (sentence.indexOf(findstr)!=-1) {
				//afficher infos 
				var infoF = '<center><p style="background-color:white;width:400px;height:120px;border: 1px solid green;font-family:Arial,Sans-Serif;font-size:12px;font-weight:bold;"><a href="http://www.sonar-ecommerce.fr/" class="blacklink">Connaissez-vous Sonar e-Commerce &reg; ?</a><br><span class="style9" style="text-align:left;padding-left:5px;padding-right:5px;">ZEOS-FRANCE propose prochainement son propre outil d\'analyse de commandes clients BtoC : Sonar e-Commerce &reg;.<br><br>Gr&acirc;ce au co&ucirc;t par requ&ecirc;te, notre service permet une pr&eacute;vention de la fraude internet d&eacute;s led&eacute;marrage de votre business en ligne !</span><br><br><span style="font-size:11px"><a href="http://www.sonar-ecommerce.fr/" class="blacklink">Cliquez ici pour en savoir plus ...</a></span></p></center>';
				var Divinfothelia = document.getElementById("infomain");
				if(infoF!=undefined) {
					Divinfothelia.innerHTML=infoF;
				}
				
			}	
		}	//if infoF
		
	
} //function 


