function Poi(id, name, type, latitude, longitude){
	this.id = id;
	this.name = name;
	this.type = type; 
	this.latitude = latitude;
	this.longitude = longitude;

	this.marker;

	this.infowindow; 

	//this.showWindow = function(map){
	//	this.infowindow.open(map, this.marker);
	//}
	//
	this.openWindow = function(map){
		this.infowindow.open(map, this.marker);
	}

	this.setInfoWindow = function(content){
		this.infowindow = new google.maps.InfoWindow({content: content});
	}
}

