var accountWebView = plus.webview.getWebviewById("account.html");
var profileImgView = plus.webview.getWebviewById("profile_image.html");
var chatListView =plus.webview.getWebviewById("chatlist.html");
mui.fire(accountWebView,"refresh");
mui.fire(profileImgView,"refresh");
mui.fire(chatListView,"refresh");
plus.nativeUI.showWaiting("Loading");
setTimeout(function(){
// Routing to index page
mui.openWindow("index.html", "index.html");
plus.nativeUI.closeWaiting();
},3000)