()
| 410 | } |
| 411 | |
| 412 | function load_playlist() |
| 413 | { |
| 414 | var s=GetCookie("playlist"); |
| 415 | var a=s.split(";"); |
| 416 | var i=0; |
| 417 | var n=0; |
| 418 | for (i=0;i<a.length;i++) |
| 419 | { |
| 420 | n=a[i]; |
| 421 | if (n.length>0) a_playlist.push(n); |
| 422 | } |
| 423 | redraw_playlist(); |
| 424 | } |
| 425 | |
| 426 | function save_playlist() |
| 427 | { |
no test coverage detected