function reproductor(aux){
    var w = 300;
    var h = 100;
    var x=(screen.width/2)-parseInt(w/2);
    var y=(screen.height/2)-parseInt(h/2);
    var sugerencias = window.open("reproductor.php?cancion="+aux+"","reproductor","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+",top="+y+",left="+x+",hotkeys=no");
    sugerencias.focus();
}
function reproductor_video(aux){
    var w = 400;
    var h = 400;
    var x=(screen.width/2)-parseInt(w/2);
    var y=(screen.height/2)-parseInt(h/2);
    var sugerencias = window.open("reproductor_video.php?video="+aux+"","reproductor","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+",top="+y+",left="+x+",hotkeys=no");
    sugerencias.focus();
}
