﻿window.onload = function initialLoad() {
    browserCheck();
}
function browserCheck() {
    if ((navigator.userAgent.indexOf('iPhone') != -1) ||
        (navigator.userAgent.indexOf('iPod') != -1)) {
        document.location = "http://www.micalimited.com/iphone/index.html";
    }
}
