function clignotement(){ 
if (document.getElementById("clignot1").style.color=="yellow") 
document.getElementById("clignot1").style.color="#C0291D"; 
else 
document.getElementById("clignot1").style.color="yellow"; 

// mise en place de l appel régulier de la fonction toutes les 1 secondes 
setInterval("clignotement()", 500); 
}



  function isIphone() {
//  var useragent = navigator.userAgent;
//	if (useragent.indexOf('iPhone') != -1 || useragent.indexOf('Android') != -1 ) {
//		return true;
//	} else {
//		return false;
//																																																																																																																																																																																																			}
	
	if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1)) {   
		//document.location = "http://www.engageinteractive.co.uk/iphone/"; 
		return true;
	} else {
		return false;
	}
	
	
	
	
	
	
	
	}
