Phoenixbowman
The browser object does work with Webview+, you just have to add a couple of plugins and lines of code to config.xml to get it to work.
As AndreasR said, you need to add the 'inappbrowser' plugin and you need to add the 'whitelist' plugin as well. Also, you need to add the following code to your config.xml, just copy and paste the lines below.
[quote:an2ewhn9]<access origin="*"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<platform name="android">
<allow-intent href="market:*"/>
<preference name="enabled" value="true"/>
</platform>
I had the same issue but this worked for me and haven't had any issues with since.