function popUp(URL, width, height, id) {
    day = new Date();
    if (id.length == 0) {
        id = day.getTime();
    }


    leftVal = (screen.width - width)/2;
    topVal = (screen.height - height)/2;
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ width +",height="+ height +", left="+ leftVal +", top="+ topVal +"');");
    newwindow = window.id;
    if (window.focus) {newwindow.focus()}

}
function  promoRotation() {

}

function albumToggler(id) {
$('.albums .song_list ol').hide('slow');
    el = $('.albums .song_list #song_holder_'+id);
    openedEl =$('.albums .song_list .opened')

    if (el.hasClass('opened')) {

        $('.albums .song_list ol').hide('slow');
        el.removeClass('opened');
        el.addClass('closed');
    } else {
        el.addClass('opened');
        el.removeClass('closed');
        openedEl.removeClass('opened');
        openedEl.addClass('closed');
        $('.albums .song_list ol#song_list_'+id).show('slow');
    }

}

$(document).ready(function() {
 $('.albums .song_list ol').hide();
  promoRotation();
});
