// 플래시 링크 데이터 ( 링크 경로를 넣어주시면 됩니다. )
var flashData = new Object();

flashData.philosophy = "/brand/philosophy_content.jsp";
flashData.magazine = "/spa/spa_introduction.jsp";
flashData.product = "/beauty/beauty_tips.jsp";

flashData.product1 = "/product/type.jsp?brandCd=2239&lineCd=2239&cdTp=L";
flashData.product2 = "/product/type.jsp?brandCd=2240&lineCd=2240&cdTp=L";
flashData.product3 = "/product/type.jsp?brandCd=2241&lineCd=2241&cdTp=L";
flashData.product4 = "/product/new.jsp";
flashData.product5 = "/product/type.jsp?brandCd=2264&lineCd=2264&cdTp=L";
flashData.product6 = "/product/type.jsp?brandCd=2244&lineCd=2244&cdTp=L";
flashData.product7 = "/product/type.jsp?brandCd=2245&lineCd=2245&cdTp=L";
flashData.product8 = "/product/type.jsp?brandCd=2246&lineCd=2246&cdTp=L";
flashData.product9 = "/product/type.jsp?brandCd=2247&lineCd=2247&cdTp=L";
flashData.product10 = "/product/type.jsp?brandCd=2248&lineCd=2248&cdTp=L";
flashData.product11 = "/product/type.jsp?brandCd=2249&lineCd=2249&cdTp=L";

flashData.footNews = "/brand/news_list.jsp";
flashData.footMagazine = "/brand/beauty_magazine.jsp";
flashData.footSpa = "/spa/spa_introduction.jsp";



/**
 * 플래시 버튼 클릭시 호출하는 함수 ( main.swf, history.swf 사용 )
 *
 * @param name 클릭한 버튼
 */
function flashLink( name )
{
	location.href=flashData[name];
}




/**
 * 로커스 메뉴 사이즈 조절 (locus.swf 사용 )
 *
 * @param name 변경할 플래시 높이 값
 */ 

function flashChangeHeight( num )
{
	var locaSwf = document.getElementById("locaSwf");
	locaSwf.height = num;
}










