// JavaScript Document
function iPhoneAlert() {
if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.
match(/iPod/i))){
var question = confirm("Would you like to view the iPhone version of our site?")
if (question){
window.location = "http://www.minnesotaalumni.org/mobile";
}
}
}
