var ie = (document.all && document.getElementById);
var ns = (!document.all && document.getElementById); 
var sf =  navigator.userAgent && ( navigator.userAgent.indexOf( 'AppleWebKit' ) != -1 || navigator.userAgent.indexOf( 'Opera' ) != -1 || navigator.userAgent.indexOf( 'KHTML' ) != -1 );
var iphone = navigator.userAgent && ( navigator.userAgent.match( /iPhone/i ) || navigator.userAgent.match( /iPod/i ) );






function iphoneCheck() {
	// iPhone switch !
	if ( iphone ) {
		if( confirm( "Utiliser la version iPhone de France Pro Golf Tour ?" ) )
				window.location.href = "http://www.opengolfparis.com/iphone/";
			}
		
	}

