/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function preview(url){
     $.ajax({
                url:'sync/ringtone/preview.php',
                cache: false,
                data:{'url':url},
                type:'POST',
                success:function(data){
                        dynamicPopup(data, 400, 100);
                }//E-succ

        });
}

function download(data,option,url){
    $.ajax({
                url:'sync/ringtone/download.php',
                cache: false,
                data:{'data':data,'option':option,'url':url},
                type:'POST',
                success:function(data){
                        dynamicPopup(data, 430, 540);
                }//E-succ

        });
}


