<!--
	var adUrl = document.location.href
	var depth1
	var depth2
	var pageNum
	var subNum

	var array_data = adUrl.split("/");
	depth1 = array_data[5];
	depth2 = array_data[6];

	adTxt="sbsgolf/"+depth1+"/"+depth2;

	if (depth1 == "tv") {
		if (depth2 == "index.jsp") {
			adTxt = "sbsgolf/tv/main";
		} else if (depth2 == "etc") {
			adTxt = "sbsgolf/tv/announcer";
		} else if (depth2 == "info") {
			adTxt = "sbsgolf/tv/information";
		} else if (depth2 == "special") {
			adTxt = "sbsgolf/tv/announcer";
		} else if (depth2 == "end") {
			adTxt = "sbsgolf/tv/announcer";
		} else if (depth2 == "academy_qna") {
			adTxt = "sbsgolf/tv/board";
		}
	}

	if (depth1 == "lesson") {
		if (depth2 == "index.html") {
			adTxt = "sbsgolf/lesson/main";
		} else if (depth2 == "etc") {
			adTxt = "sbsgolf/lesson/qna";
		} else if (depth2 == "real") {
			adTxt = "sbsgolf/lesson/qna";
		} else if (depth2 == "realac") {
			adTxt = "sbsgolf/lesson/qna";
		}
	}

	if (depth1 == "golfcard") {
		if (depth2 == "index.jsp") {
			adTxt = "sbsgolf/golfcard";
		}
	}

	if (depth1 == "tv") { // TV
		pageNum = "0";

		if (depth2 == "cast") { // ´ëÈ¸Áß°è
			subNum = "0"
		} else if (depth2 == "lesson") { // ·¹½¼
			subNum = "1"
		} else if (depth2 == "information") { // Á¤º¸
			subNum = "2"
		} else if (depth2 == "event") { // ÀÌº¥Æ®
			subNum = "3"
		} else if (depth2 == "announcer") { // Æ¯Áý
			subNum = "4"
		} else if (depth2 == "end") { // Á¾¹æÇÁ·Î±×·¥
			subNum = "5"
		} else if (depth2 == "board") { // ½ÃÃ»ÀÚ ÀÇ°ß
			subNum = "6"
		}
	} else if (depth1 == "lesson") { // ·¹½¼
		pageNum = "1";

		if (depth2 == "beginner") { // °ñÇÁÀÔ¹®
			subNum = "0"
		} else if (depth2 == "single") { // Áß »ó±Þ
			subNum = "1"
		} else if (depth2 == "woman") { // ¿©¼º ÁÖ´Ï¾î
			subNum = "2"
		} else if (depth2 == "fitting") { // ÇÇÆÃ¼¾ÅÍ
			subNum = "3"
		} else if (depth2 == "qna") { // ·¹½¼ Q&A
			subNum = "4"
		} else if (depth2 == "real") { // ¸®¾ó·¹½¼
			subNum = "5"
		} else if (depth2 == "realac") { // ½ÇÀü¾ÆÄ«µ¥¹Ì ·¹½¼
			subNum = "5"
		}
	}

//-->

