//
// - Fonction iPhone
//
		function iPhoneAlert() {
		if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.
		match(/iPod/i))){
		var question = confirm("Souhaitez-vous naviguer sur le site pour iPhone ?")
		if (question){
		window.location = "http://www.centredevie.ch/iphonecdv/";
		}else{
		}
		}
		}
