/*******************************************************************************************************
  ¹Î¹Ú ¼Ò°³ ºÎºÐ
*******************************************************************************************************/
  function lfn_start_ab() {
    sel.value="0"; 
  }

  function lfn_disp_ab(chk) {
    div_about.style.display="none";
    div_lic.style.display="none";
    div_ins.style.display="none";
    div_serv.style.display="none";
    div_photo.style.display="none";
    div_faq.style.display="none";
      
    if (chk=="1")div_about.style.display="";
    if (chk=="2")div_lic.style.display="";
    if (chk=="3")div_ins.style.display="";
    if (chk=="4")div_serv.style.display="";
    if (chk=="5")div_photo.style.display="";
    if (chk=="6")div_faq.style.display="";
  }

  function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)  {
    toolbar_str = toolbar ? 'yes' : 'no';
    menubar_str = menubar ? 'yes' : 'no';
    statusbar_str = statusbar ? 'yes' : 'no';
    scrollbar_str = scrollbar ? 'yes' : 'no';
    resizable_str = resizable ? 'yes' : 'no';
    window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
  }


/*******************************************************************************************************
  °ü°è»ç ¿¬°á
*******************************************************************************************************/
  function lfn_change(){
   	  
  }
/*******************************************************************************************************
  Window Popup
*******************************************************************************************************/
function lfn_winpopup(page,wchk,hchk,chknm) {	
	win_val.value="./img/soojung_"+chknm+".jpg";
	
	var windowprops='width=100,height=100,scrollbars=no,status=no,resizable=no'; 
	// ¡è ÃÊ±â¿¡ Á¶±×¸¶ÇÑ À©µµ¿ì¸¦ ¿­¶§ÀÇ ¿É¼ÇÀ» ÁöÁ¤ÇÕ´Ï´Ù
	var heightspeed = 7;
	// ¡è ¼öÁ÷ ½ºÅ©·Ñ ¼Óµµ¸¦ ÁöÁ¤ÇÕ´Ï´Ù
	var widthspeed = 7;
	// ¡è ¼öÆò ½ºÅ©·Ñ ¼Óµµ¸¦ ÁöÁ¤ÇÕ´Ï´Ù
	var leftdist = 20;
	// ¡è À©µµ¿ìÀÇ ¿ÞÂÊ ³¡ À§Ä¡
	var topdist = 20;
	// ¡è À©µµ¿ìÀÇ À§ÂÊ ³¡ À§Ä¡

	if (window.resizeTo&&navigator.userAgent.indexOf("Opera")==-1) {
		var winwidth = wchk
		var winheight = hchk
		var sizer = window.open("","","left=" + leftdist + ",top=" + topdist +","+ windowprops);
		for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed)
			sizer.resizeTo("1", sizeheight);
		for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed)
			sizer.resizeTo(sizewidth, sizeheight);
		sizer.location = page;
	}else{
		window.open(page,'mywindow');
	}
}