var iphone = navigator.userAgent && ( navigator.userAgent.match( /iPhone/i ) || navigator.userAgent.match( /iPod/i ) );

iphoneCheck();

function iphoneCheck() {
	// iPhone switch !
	if ( iphone ) {

			if ( confirm( "Utiliser la version iPhone des élections municipales 2009?" ) ) {
				window.location.href = "http://www.radio-canada.ca/regions/municipales2009/iphone/";
			}
	}
}
