function Event(license, addr, zip, desc, img){
   this.license = license;
   this.addr = addr; 
   this.zip = zip;
   this.desc = desc; 
   this.img = img;
   this.getLicense = getLicense;
   this.getAddr = getAddr;
   this.getImg = getImg;
   this.getDesc = getDesc;
   this.getFullAddress = getFullAddress;
}

function getLicense(){
   return this.license;
}

function getAddr(){
   return this.addr; 
}

function getZip(){
   return this.zip; 
}

function getFullAddress(){
   if(this.zip <= 0){
   	return this.addr; 
   }
   return this.addr + ", " + this.zip; 
}

function getImg(){
   return this.img;
}

function getDesc(){
   return this.desc; 
}
