function OurInfoWindow() {
	this.iw;
	this.settings;
};

OurInfoWindow.prototype = {
	//google.maps.InfoWindow
	init : function(_settings) {
		this.settings = _settings;
		this.iw = new google.maps.InfoWindow(this.settings);

		alert('init');
	},
	
	open: function(map, marker) {
		//HTTP Request
		this.iw.open(map, marker);
		alert('open');
	}
	
};
