var nueva = "";

jQuery( document ).ready( function() {  
    jQuery(".player_enlace a").click(function () {
        if (nueva){
            nueva.focus();
        }else{
            var caracteristicas = "height=320,width=320,resizable=0,scrollbars=0,location=0,titlebar=0,status=0";  
            nueva=window.open('index.php?id=36', 'Reproductor', caracteristicas);
            nueva.focus();
        }
        return false;  
    });
});
