// JavaScript Document

function go_link(urlStr) {

	switch (urlStr) {
		case "home" : location.href = "index.php"; break;
		case "menu0" : location.href = "info_sub01.php"; break;
		case "menu1" : location.href = "match.php"; break;
		case "menu2" : location.href = "guide_sub01_1.php"; break;
		case "menu3" : location.href = "prize_sub01.php"; break;
		case "menu4" : location.href = "benefit_sub01.php"; break;
		case "menu5" : location.href = "ranking_sub01_1.php"; break;
		case "gamestart" : gamestart(); break;
		case "shot" : window.open('/', '', ''); break;
	}
}