// JavaScript Document

function AbsGpsMarker(lat, lon, icon, title, link)
{
	this.lat = lat;
	this.lon = lon;
	this.icon = icon;
	this.title = title;
	this.link = link;
	
}

