Can the address bar in SeedcodeIWP on iPhone hide?

Is it possible to hide the address bar on the iPhone and more screen space? I've seen this on other iPhone aware websites. Is that possible with IWP?
Thanks.
Thanks.
Support for SeedCode
http://archive.seedcode.com/support/
http://archive.seedcode.com/support/viewtopic.php?f=25&t=2277
<script type="application/x-javascript">
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
addLoadEvent(updateLayout);
var currentWidth = 0;
function updateLayout()
{
if (window.innerWidth != currentWidth)
{
currentWidth = window.innerWidth;
var orient = currentWidth == 320 ? "profile" : "landscape";
document.body.setAttribute("orient", orient);
setTimeout(function()
{
window.scrollTo(0, 1);
}, 100);
}
}
setInterval(updateLayout, 400);
</script>