function login_click()
{
	document.MemberLogin.target="_self";
	document.MemberLogin.submit();
}

function mainmenu_click(num)
{
	document.MainMenu.target="_self";
	document.MainMenu.n.value=num;
	document.MainMenu.submit();
}

function subgenremenu_click(num)
{
	document.SubMenu.target="_self";
	document.SubMenu.s.value=num;
	document.SubMenu.submit();
}

function detail_click(num)
{
	document.Detail.target="_self";
	document.Detail.m.value=num;
	document.Detail.submit();
}

function detailg_click(mode,num)
{
	document.Detail.target="_self";
	document.Detail.s.value=mode;
	document.Detail.m.value=num;
	document.Detail.submit();
}

function page_change(num)
{
	document.PageChange.target="_self";
	document.PageChange.p.value=num;
	document.PageChange.submit();
}

function buy_shot(num,url)
{
	document.BuyShot.target="_self";
	document.BuyShot.action=url+"charge.asp";
	document.BuyShot.tp.value="0";
	document.BuyShot.sn.value=num;
	document.BuyShot.submit();
}

function buy_pack(num,url)
{
	document.BuyShot.target="_self";
	document.BuyShot.action=url+"charge.asp";
	document.BuyShot.tp.value="1";
	document.BuyShot.sn.value=num;
	document.BuyShot.submit();
}

function buy_month(num,url)
{
	document.BuyShot.target="_self";
	document.BuyShot.action=url+"charge.asp";
	document.BuyShot.tp.value="2";
	document.BuyShot.sn.value=num;
	document.BuyShot.submit();
}



function under_check()
{
	document.UnderCheck.target="_self";
	document.UnderCheck.submit();
}

