<!-- Venue.js -->
<!--

function Venue(name, link, address, city, state) {

   // variables
   this.name = name;
   this.link = link;
   this.address = address;
   this.city = city;
   this.state = state;

   //methods
   //this.getURL = getURL

}

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









//-->


