9 this.isEmpty = function() {
10 return ( (this.artist == '') && (this.length == 0) && (this.rating == 1)
11 && (this.source == '') && (this.title == '') && (this.track == 1)
12 && (this.uri == '') );
16 Buddy = function(name, jid) {
20 this.visible = false; // Whether the vCard is currently displayed
21 this.tune = new Tune();