
function popup() {
	win = window.open(this.href, 'socialboomark','scrollbars=yes,resizable=yes,top=100,left=100,status=yes,width=1000,height=600');

	setTimeout("win.focus()", 500);

	return false;
}

// old skool
window.onload = function() {
	if(!document.getElementById)
		return;

	var social = document.getElementById("shareTools");

	if(social) {
		var links = social.getElementsByTagName("a");

		for(var i in links)
			links[i].onclick = popup;
	}
};
