// ==UserScript==
// @name geo URL
// @include *
// ==/UserScript==

(function () {
	var m = document.getElementsByTagName('meta');
	var keido,ido;
	
	for(i=0;i<m.length;i++) {
		if(m[i].name == 'ICBM') {
			ido = m[i].content.split(',')[0];
			keido = m[i].content.split(',')[1];
		}
	}

	if((ido!=null) && (keido !=null)){
		var s = document.createElement('div');
		with(s.style) {
			fontSize = '12px';
			textAlign = 'left';
			position = 'fixed';
			right = '0';
			bottom = '0';
			margin = '0';
			padding = '0 10px';
			zIndex = '5';
			overflow = 'auto';
			border = '1px #000 solid';
			backgroundColor = '#fff';
		}

		s.innerHTML = '<a href=\"http://www.allthegoodness.com/projects/map/firefox/index.php?lat='+ido+'&long='+keido+'\">GeoURL</a>';
		document.body.appendChild(s);
	}
})();
