<!--

//»óÇ°¸ñ·Ï Àå¹Ù±¸´Ï ´ã±â fn 
function UpdateQtyAndItem(){
    var frm = document.body;
    try{
      var selectedItems = getCheckedCheckboxForDiv(frm, ',' );
      if(selectedItems == null || selectedItems == ""){
         alert('Àå¹Ù±¸´Ï¿¡ ´ãÀ» »óÇ°À» ¼±ÅÃÇØ ÁÖ¼¼¿ä.');
         return false;
      }
    }catch(ex){
      //¾Ï°ÍµÎ ¾ÈÇÑ´Ù...
    }

    document.Myform.action = '/shop/wbasket.aspx';
    document.Myform.target = "";
    return true;

	// type='image' À¸·Î ±¸ÇöµÈ input ¿¡¼­ È£ÃâµÇ¾îÁö±â ¶§¹®¿¡ ¼­¹Ô ÇÊ¿ä ¾øÀ½
	//document.frm.submit();
}
function UpdateQtyAndItemClass(){
	document.Myform.action = '/aladdin/wclassbook_form.aspx?classBookType=1';
	document.Myform.target = "";
	document.Myform.submit();
}
function UpdateQtyAndItem_onebyOne(ISBN){
	checkitem(ISBN);	
	UpdateQtyAndItem();
}

function AddBasketAll()
{
	document.Myform.action='/shop/wbasket.aspx';
	document.Myform.target = "";
	document.Myform.submit();
}


//-->
