Here's how to minimize the url address bar in a web page on a blackberry (blackberry 6 anyways).
Put this script at the bottom of the page, or call it ondocumentready:
if(navigator.userAgent.toLowerCase().indexOf('blackberry')>0)window.scrollTo(0,40);
It causes the browser to scroll down 40 pixels, which essentially makes the browser bar hide itself.