
/*************************************************
// ¹Ìµð¾î Æú´õÀÇ..°î ¼±ÅÃ µè±â ½ºÅ©¸³Æ®ÀÓ..
*************************************************/
function playListAOD()
{
    var cnt = GetCheck();
    if(cnt == 0)
    {
        alert("°îÀ» ¼±ÅÃÇÏ¼¼¿ä.");
        return;
    }
    
    parent.process.location.href='album_playasxfile.asp?cnumlist=' + document.all.cnumlist.value;
}


/*************************************************
// Ã¼Å©¹Ú½ºÀÇ Ã¼Å© °¹¼ö¸¦ È®ÀÎÇÕ´Ï´Ù.
*************************************************/
function GetCheck()
{
    var ck = 0;
    document.all.cnumlist.value = "";
    
    for(var i = 0 ;i < document.all.length; i++)
    {
        if(document.all[i].type == 'checkbox' && document.all[i].name == 'music')
        {
            if(document.all[i].checked)
            {                
                if(ck > 0)
                {
                    document.all.cnumlist.value += "^" + document.all[i].value;
                }
                else
                {
                    document.all.cnumlist.value = document.all[i].value;
                }
                
                ck++;
            }
        }
    }
    
    return ck;
}


