/*  Support in Edition of Multimedia and Digital Assistance
	http://www.semad.webs.com/

	Panteras
	Universidad Panamericana Preparatoria
	Code to go to iphone page when it enters the page
*/

if ((navigator.userAgent.indexOf('iPhone') != -1) ||  
(navigator.userAgent.indexOf('iPod') != -1) || 
(navigator.userAgent.indexOf('iPad') != -1) ||  
(navigator.userAgent.indexOf("BlackBerry")!=-1)) {  
var answer = confirm("Would you like to be redirected to the mobile site")
if (answer){document.location = "mobile.html";} 
}
