﻿function redirectifiphone()
{
    var agent = navigator.userAgent.toLowerCase();
    var is_iphone = (agent.indexOf('iphone') != -1);
    if (is_iphone) 
    { 
        window.location = '/enter/mobile/';
    }
}

redirectifiphone();