porque con este codigo 
 
muestro con alert y necesito mostrarlo en una ventan popup 
como lo implemento    
Código Javascript
:
Ver originaleventClick: function(calEvent, jsEvent, view) {
 
        alert('Event: ' + calEvent.title);
        alert('Coordinates: ' + jsEvent.pageX + ',' + jsEvent.pageY);
        alert('View: ' + view.name);
 
        // change the border color just for fun
        $(this).css('border-color', 'red');
 
    },