//swf 

function CallAction(strID)
{
	//alert(strID);

	switch (strID.toLowerCase())
	{
		case "home":
			location.href = "main.htm";
			break;
		case "index":
			PlayBgm();
			location.href = "index.htm";
			break;
		case "albuminfo":
			location.href = "albuminfo.htm";
			break;
		case "albumreview":
			location.href = "albumreview.htm";
			break;
		case "profile" :
			location.href = "profile.htm";
			break;
		case "videoclip" :
			location.href = "videoclip.htm";
			break;
		case "biography" :
			location.href = "biography.htm";
			break;
		case "forum" :
			strfile = "/4th/forum/forum_index.asp?f_id=4&cateid=8&subid=";
			window.open (strfile,"forum");
			break;
		case "play" :
			try{
				PlayBgm();
			}catch(e){}
			break;
		case "stop" :
			try{
				StopBgm();
			}catch(e){}
			break;
		case "videostart" :
			try{
				StopBgm();
			}catch(e){}
			break;
		default :
			//alert(strID);
			if (!isNaN((strID)))
			{
				StopBgm();
				//mpOpen(strID);
				openMovie(strID);
				break;
			}
			location.href = "main.htm";
	}
}
