function share_this(url, title)
{
	services = new Array("Digg","Reddit","Del.icio.us", "Google", "Live", "Facebook", "Slashdot", "Netscape", "Technorati", "StumbleUpon", "Newsvine", "Furl", "Yahoo", "Ma.gnolia");
	urls = new Array(
		"http://digg.com/submit?phase=2&url="+url+"&title="+title,
		"http://reddit.com/submit?url="+url+"&title="+title,
		"http://reddit.com/submit?url="+url+"&title="+title
	);

 // create the UL element that our LI elements will descend from
eUL = document.createElement("ul");
// initialize the eLI variable as an array
eLI = new Array();
// loop over the length of the "data" array
for(i=0;i<data.length;i++) {
	// create an LI, this time as a member of your array
	eLI[i] = document.createElement("li");
	// append the value of data[i] to the LI as a text node
	eLI[i].appendChild(document.createTextNode(data[i]));
	// append the LI to the UL
	eUL.appendChild(eLI[i]);
}
// append the UL to the "mContainer" element.
document.getElementById("mContainer").appendChild(eUL);
}
