function goMenu(pMenu)
{
	var goUrl = "";
	
	switch(pMenu)
	{
		case "HOME" :	// ¸ÞÀÎ ÆäÀÌÁö
			goUrl = "/";
			break;
		case "LOGIN" :	// ·Î±×ÀÎ
			goUrl = "";
			break;
		case "LOGOUT" :	// ·Î±×¾Æ¿ô
			goUrl = "/Global/LogOut.jsp";
			break;
		
	}
	if( goUrl!="" )
		location.href = goUrl;
}


function CreateFlash(pWidth,pHeight,pPath,pOption,pFlashVar)
{
	//document.write("<DIV STYLE='z-index:0;'");
	document.write("<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' WIDTH='" + pWidth + "' HEIGHT='" + pHeight + "' VIEWASTEXT>");
	document.write("<PARAM NAME='movie' VALUE='" + pPath + "'>");
    document.write("<PARAM NAME='quality' VALUE='high'>");
    if(pFlashVar!="undefined")
    {	
		//if(pFlashVar.length>0)
		//{
			document.write("<PARAM name='FlashVars' value='" + pFlashVar + "'>");
		//}
	}
	
	document.write("<EMBED SRC='" + pPath + "' QUALITY='high' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer' TYPE='application/x-shockwave-flash' WIDTH=" + pWidth + " HEIGHT=" + pHeight + " " + pOption +"></EMBED>");
	document.write("</OBJECT>");
	//document.write("</DIV>");
}
