function ym_delicious (x,y,href,title) {

if (href == undefined) {href = location.href;}
if (title == undefined) {title = document.title;}

return 'http://del.icio.us/post?v=4&jump=close&copytags=yourmap%2Bgeolicious%2Bgeocoded%2Bphotos%2Bphotography%2Bgeotagged%2Bmap%2Bgmap%2Bgeo:lat='+y+'%2Bgeo:long='+x+'&copyuser=yourmap&url='+encodeURIComponent(href)+'&title='+encodeURIComponent(title);

}

function ym_addtoany (href,type,title) {

if (href == undefined) {href = location.href;}
if (title == undefined) {title = document.title;}

return 'http://www.addtoany.com/?type='+type+'&linkurl='+encodeURIComponent(href)+'&linkname='+encodeURIComponent(title);

}



function ym_miles (x1,y1,x2,y2) {

	var from = new GLatLng(y1, x1);
	// to = GLatLng(y2, x2);
	meters = from.distanceFrom(new GLatLng(y2, x2));
	miles =  meters * 0.000621371192;
	miles = Math.ceil(miles) ;	// round up


return miles;
}
