Fish

window.location = "gameover.html"; var gameover_text = new sjs.Text("GameOver!",28,"blue"); gameover_text.centerH().offset(0,85); var startBtn = new sjs.Button("Restart", function(){ window.location = "index.html"; }); startBtn.center(); var score_txt = new sjs.Text("Your Score: ", 21, "orange"); score_txt.setText("Score: "+localStorage.getItem("score"));