
//detect iPad
function isiPad(){
    return (
        (navigator.userAgent.indexOf("iPad") != -1)        
    );
}
if(isiPad()){
    window.location = "iPad/";
}


//detect iPod/iPhone
function isiPhone(){
    return (
        (navigator.userAgent.indexOf("iPhone") != -1)        
    );
}
if(isiPhone()){
    window.location = "iPad/";
}



