function song(_artist, _title, _album, _last, _nm) {
  this.title = _title;
  this.artist = _artist;
  this.album = _album;
  this.last = _last;
  this.nm = _nm;
}
musics = new song('Jane\'s Addiction','08-Of Course','Ritual De Lo Habitual','December 13, 2003, 1:55 am','08-Of Course.mp3');
displaycount = 0;