function iphoneDetect()
{
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
	{
		var answer = confirm("Do you want to go to iPhone enhanced page?")
		if (answer)
		{
			window.location = "http://www.uis.edu/m/iphone.html";
		}
	}
	
}
