var playerpop;

function tocarcancion(cancion){
	if(cancion){
		if(playerpop){
			if(playerpop.closed){
				playerpop=window.open('player/index.php?c=' + cancion, 'playerpop', 'scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=320, height=680');
			}
			else{
				playerpop.loadSong(cancion);
				playerpop.focus();
			}
		}
		else{
			playerpop=window.open('player/index.php?c=' + cancion, 'playerpop', 'scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=320, height=680');
		}
	}
}
