function downloadMp3(band, song) {
    var left = (screen.width - 1024) / 2;
    var top = (screen.height - 768) / 2;
    var win = window.open("http://www.mp3panda.com/user/registration/?partner=4809&subaccount=free", "Download", "width=1024,height=768,left=" + left + ",top=" + top + ",menubar=1,location=1,resizable=1,scrollbars=1,directories=1,scroll=1,status=1,menubar=1,locationbar=1,statusbar=1,titlebar=1,toolbar=1");
    
    //var left = (screen.width - 700) / 2;
    //var top = (screen.height - 600) / 2;    
    //var win = window.open("http://www.msjoen.com/joen/interest/.mp3/3553/get.php?b=" + escape(band) + "&s=" + escape(song), "Download", "width=700,height=600,left=" + left + ",top=" + top + ",menubar=0,location=0,resizable=0,scrollbars=0,directories=0,scroll=0,status=0,menubar=0,locationbar=0,statusbar=0,titlebar=0,toolbar=0");
    
    win.focus();
}
function downloadMp3Song(band, song) {
    var left = (screen.width - 1024) / 2;
    var top = (screen.height - 768) / 2;
    var win = window.open("http://www.mp3panda.com/user/registration/?partner=4809&subaccount=free", "Download", "width=1024,height=768,left=" + left + ",top=" + top + ",menubar=1,location=1,resizable=1,scrollbars=1,directories=1,scroll=1,status=1,menubar=1,locationbar=1,statusbar=1,titlebar=1,toolbar=1");
    
    //var left = (screen.width - 700) / 2;
    //var top = (screen.height - 600) / 2;
    //var win = window.open("http://www.msjoen.com/joen/interest/.mp3/3553/get.php?b=" + band + "&s=" + song, "Download", "width=700,height=600,left=" + left + ",top=" + top + ",menubar=0,location=0,resizable=0,scrollbars=0,directories=0,scroll=0,status=0,menubar=0,locationbar=0,statusbar=0,titlebar=0,toolbar=0");
    
    win.focus();
}