﻿function share(url, title)
	{
		try {
			var u = "http://www.addthis.com/bookmark.php?v=250&url="+encodeURIComponent(url)+"&title="+encodeURIComponent(title);
			var n = "addthis_popup";
			var haut=(screen.height-533)/2;
			var Gauche=(screen.width-492)/2;
			var vars = "top="+haut+",left="+Gauche+",width=492,height=533,menubar=no,toolbar=no";
			var w = window.open(u, n, vars);
			w.focus();
			return false;
		} catch (e) {
			if (console && console.log) {
				console.log(e);
			}
			throw e;
		}
	}