function goSubURL(idx,sidx,ssidx){
  //alert(arrySubMenu[idx][sidx].link);
  if (ssidx != null && ssidx != undefined) {
    document.location.href = arrySubMenu[idx][sidx].child[ssidx].link;
  } else {
    document.location.href = arrySubMenu[idx][sidx].link;
  }
}

function drawMenu(idx,sidx){
// idx
// 0:HOME, 1:About Yurion, 2:Service, 3:Product, 4:Technology, 5:Content, 6:Partners, 7:Site Map, 8:English

//document.write("<table border=0 cellpadding=0 cellspacing=0 width=100%>");
//document.write("<tr><td height=19></td></tr>");
//document.write("<tr><td align=center>");
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='920' height='110' id='sub_navi'>");
document.write("<param name=movie value='flash/sub_navi.swf?menuNum=" + idx + "&loadNum=" + idx + "'>");
document.write("<param name=quality value=high>");
document.write("<param name=menu value=false>");
document.write("<param name=wmode value=transparent>");
document.write("<embed src='flash/sub_navi.swf?menuNum=" + idx + "&loadNum=" + idx + "' quality=high width='920' height='110' name='sub_navi' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>");
document.write("</object>");
//document.write("</td></tr>");
//document.write("<tr><td height=1></td></tr>");
//document.write("</table>");

}