﻿// JScript File

// This function used for to check the songs check boxes when click Selectall button.
 function fillcheckboxes()
    {
        var songscount=document.getElementById("hdn_count").value;
    
        if (songscount>0)
        {
           for (var i=1; i<=songscount; i++)
           {
    
               document.getElementById("CKB_Song"+i).checked=true;
    
           }
         
       }
       
    }
    
    //This function used for to Get Selected songs ids, when click the Playselectd button. and send that ids to FRM_AudioPlayer.aspx page.
   
    function GetSelectedSongIds(PlayerURL,MovieID)
    {
        var ids="";
        var songscount=document.getElementById("hdn_count").value;
     
        if (songscount>0)
        {
            for (var i=1; i<=songscount; i++)
            {
    
            if (document.getElementById("CKB_Song" +i).checked == true)
            {
               if (ids !="")
               {
                 ids=ids + "," + document.getElementById("CKB_Song"+i).value;
               
               }
               else
               {
                 ids=document.getElementById("CKB_Song"+i).value;
               
               } 
     
             }
             }
    
        }
       if (ids !="")
       {
            //alert('Test');
            document.location.href = PlayerURL + "FRM_AudioPlayer.aspx?SongIds="+ids+"&MovieID="+MovieID;   
       
       }
    
    }