function ListenNowPopUp() {    
    var url = "../live/music-player/";
    var isChrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
    if (isChrome) {
        window.open(url, 'LiveStream', 'width=900,height=640, resizable=0, scrollbars=0,titlebar=0,toolbar=0,status=0,menubar=0,location=0').focus();
    }
    else {
        window.open(url, 'LiveStream', 'width=898,height=635, resizable=0, scrollbars=0,titlebar=0,toolbar=0,status=0,menubar=0,location=0').focus();
    }
} 
