private void addHelloFriendPanel(String nickname, String highscore) {
Cookies.removeCookie("tempScore");
Label hello = new Label("hello " + nickname + " , your highscore is : " + highscore);
hello.getElement().setId("hello-panel");
hello.addStyleName("instructions-style");
RootPanel.get("hello-friend").getElement().appendChild(hello.getElement());
}
private void addWarning() {
HTML warn = new HTML("NOTE : logging out of facebook without refreshing the page will cause unexpected behavior");