//swf navigation
function CallAction(strID)
{
	
	switch (strID.toLowerCase())
	{
		case "home":
			location.href = "index.htm";
			break;
		case "sub01" :
			location.href = "IntroDept.htm";
			break;
		case "sub01_02" :
			location.href = "IntroOrg.htm";
		    break;	
		case "sub01_03" :
			location.href = "IntroLeader.htm";
			break;
		case "sub01_04" :
			location.href = "IntroSitemap.htm";
		    break;
		case "sub02" :
			location.href = "DevelopPlan.htm";
			break;
		case "sub02_02" :
			location.href = "DevelopScheduleList.htm";
		    break;
		case "sub03" :
			location.href = "HRAppointList.htm";
		    break;	
		case "sub03_02" :
			location.href = "HRRecruitList.htm";
		    break;
		case "sub03_03" :
			location.href = "HRHonorList.htm";
		    break;
		case "sub04" :
			location.href = "RaguList.htm";
		    break;
		case "sub04_02" :
			location.href = "RaguNormativeList.htm";
		    break;
		case "sub04_03" :
			location.href = "RaguOthersList.htm";
		    break;
		case "sub05" :
			location.href = "OpenGoverList.htm";
		    break;
		case "sub05_02" :
			location.href = "OpenPublicList.htm";
		    break;
		case "sub05_03" :
			location.href = "OpenNoticeList.htm";
		    break;
		case "sub05_04" :
			location.href = "OpenStatisticsList.htm";
		    break;
		case "sub06" :
			location.href = "FinanceAccountsList.htm";
		    break;
		case "sub06_02" :
			location.href = "FinancePurchaseList.htm";
		    break;
		case "sub06_03" :
			location.href = "FinanceChargeList.htm";
		    break;
		case "sub06_04" :
			location.href = "FinanceSpecialList.htm";
		    break;
		case "sub06_05" :
			location.href = "FinanceTaxationList.htm";
		    break;
		case "sub06_06" :
			location.href = "FinanceInvestList.htm";
		    break;
		case "sub06_07" :
			location.href = "FinanceAttractList.htm";
		    break;
		case "sub07" :
			location.href = "ServiceTransactList.htm";
		    break;
		case "sub07_02" :
			location.href = "ServicePopulaceList.htm";
		    break;
		case "sub07_03" :
			location.href = "ServiceEnterpriseList.htm";
		    break;
		case "sub07_04" :
			location.href = "ServiceGroupList.htm";
		    break;
		case "sub07_05" :
			location.href = "ServiceSearchList.htm";
		    break;
		case "sub07_06" :
			location.href = "ServiceApproveList.htm";
		    break;
		case "sub07_07" :
			location.href = "ServiceDownloadList.htm";
		    break;
		case "default" :
			location.href = "";
		break;
		//case "comingsoon" :
		     //alert:Coming Soon!
			//location.href = "";
		//break;


		case "play" :
			PlayBgm();
			break;
		case "stop" :
			StopBgm();
			break;
		case "kor" :
			SetLanguage("kor");
			break;
		case "eng" :
			SetLanguage("eng");
			break;
		case "jpn" :
			SetLanguage("jpn");
			break;
		case "chn" :
			SetLanguage("chn");
			break;
		default :
			if (!isNaN((strID)))
			{
				try{
				StopBgm();
				}
				catch(err){}

				openMovie(strID);
				return;
			}
			location.href = "";
	}
}

function openMovie(id)
{
	strUrl = "/pages/thetrax/version02/player.sm?id=" + id;
	window.open(strUrl,"MoviePlayer","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=360");
}

