//Hide the address bar
if (navigator.userAgent.indexOf('iPhone') != -1) { 
        addEventListener("load", function() { 
                setTimeout(function() { window.scrollTo(0,1); }, 0); 
        }, false); 
}
