This is a mini-browser module to use in Titanium Appcelerator
You have just to instance the MiniBrowser to a variable, and create it. It will return a Window, and you can do what you want. See these examples:
var modalBrowser = new MiniBrowser({
url:"http://www.google.com/",
barColor:"#000",
modal:true
});
var winModalBrowser = modalBrowser.create();
winModalBrowser.open();
var tabGroupedBrowser = new MiniBrowser({
url:"http://www.google.com/",
barColor:"#000"
});
Ti.UI.currentTab.open(tabGroupedBrowser.create());

