// JavaScript Document

// Location class
function ProviderInfo(name, type, point, marker, phone, web) {
	this.name = name;
	this.type = type;
	this.point = point;
	this.marker = marker;
	this.phone = phone;
	this.web = web;

}


