<!-- Band.js -->
<!--

function Band(name, link) {

   // variables
   this.name = name;
   this.link = link;

   //methods
   //this.getURL = getURL

}

/*function getURL() {
   if (this.link == null) return null;
} */









//-->


