


// le site officiel classique 
// monsitenormal.com
var siteoff = "varenne-hotel-paris.com";

// le site de redirection si smartphone detecte
// http://www.monsite.mobi/
var sitemobi = "http://www.hotelvarenne.mobi";


// FIN CONF ne pas editer apres
// ----------------------------------

if ((navigator.userAgent.match(/iPhone/i)
		|| navigator.userAgent.match(/iPod/i)
		|| navigator.userAgent.match(/n95/i)
		|| navigator.userAgent.match(/mobile/i)
		|| navigator.userAgent.match(/Windows CE/i)
		|| navigator.userAgent.match(/SmartPhone/i)
		|| navigator.userAgent.match(/BlackBerry/i)
		|| navigator.userAgent.match(/symbian/i)
		|| navigator.userAgent.match(/midp/i)
		|| navigator.userAgent.match(/ericsson/i)
		|| navigator.userAgent.match(/portalmmm/i)
		|| navigator.userAgent.match(/nokia/i)
		|| navigator.userAgent.match(/PANTECH/i)
		|| navigator.userAgent.match(/pocketPC/i)
		|| navigator.userAgent.match(/series60/i)
		|| navigator.userAgent.match(/Vodafone/i)
		|| navigator.userAgent.match(/HTC/i)
		|| navigator.userAgent.match(/PDA/i)
		|| navigator.userAgent.match(/pda/i)
		|| navigator.userAgent.match(/PALM/i)		
		|| navigator.userAgent.match(/palm/i)		
		|| navigator.userAgent.match(/wap/i)
		|| navigator.userAgent.match(/mot/i)
		|| navigator.userAgent.match(/Opera Mini/i)
		|| navigator.userAgent.match(/samsung/i)
		|| navigator.userAgent.match(/Samsung/i)
		|| navigator.userAgent.match(/SAMSUNG/i)
		|| navigator.userAgent.match(/PLAYSTATION/i)
		|| navigator.userAgent.match(/SONY/i)
		|| navigator.userAgent.match(/Sony/i)	
		|| navigator.userAgent.match(/Teleca/i)
		|| navigator.userAgent.match(/PSP/i)			
		|| navigator.userAgent.match(/Klondike/i))
		
		&& (!document.referrer.match(/.+siteoff+/i)))

		window.location.href = sitemobi;
