MINESWEEPER_MENU = {
	show: function() {
		if( !MINESWEEPER_MENU.wnd ) {
			MINESWEEPER_MENU.wnd = new WINDOW("MINESWEEPER_MENU");
			MINESWEEPER_MENU.wnd.create(YAHOO.MINESWEEPER.game.wnd.getContainerX() + YAHOO.MINESWEEPER.game.wnd.getContainerWidth() + 5, YAHOO.MINESWEEPER.game.wnd.getContainerY(), 130, 20 + 25 * 5);
			MINESWEEPER_MENU.wnd.setTitle("Menu");
			//FREECELL_MENU.wnd.center();
			YAHOO.util.Dom.setStyle(MINESWEEPER_MENU.wnd.get_id(), "font", "bold 9pt verdana");
			YAHOO.util.Dom.setStyle(MINESWEEPER_MENU.wnd.get_id(), "textAlign", "center");
			YAHOO.util.Dom.setStyle(MINESWEEPER_MENU.wnd.get_id(), "padding", "10px 0");
			YAHOO.util.Dom.setStyle(MINESWEEPER_MENU.wnd.get_id(), "lineHeight", "200%");

			MINESWEEPER_MENU.wnd.addHTML("<a href='javascript: YAHOO.MINESWEEPER.game.score.show_get_score();' style='color: #ff0000; text-decoration: none;'>High Score</a>");
			MINESWEEPER_MENU.wnd.addHTML("<a href='../beginner/' style='color: #000000; text-decoration: none;'>Beginner</a>");
			MINESWEEPER_MENU.wnd.addHTML("<a href='../normal/' style='color: #000000; text-decoration: none;'>Normal</a>");
			MINESWEEPER_MENU.wnd.addHTML("<a href='../expert/' style='color: #000000; text-decoration: none;'>Expert</a>");
			MINESWEEPER_MENU.wnd.addHTML("<a href='javascript: CREDIT.show(\"Javascript MineSweeper<br>idw1@naver.com\");' style='color: #666666; text-decoration: none;' id='freecell_login'>About</a>");
		}
		else {
			FREECELL_MENU.wnd.show();
		}
	},

	hide: function() {
		FREECELL_MENU.wnd.hide();
	}
};
