// JavaScript Document

var thisUrl = document.location.href;

var thisTitle = document.title; 

var thisPageUrl = encodeURI(thisUrl);

var thisPageTitle = encodeURI(thisTitle);

//alert(thisPageUrl);

function startShareCode(){

	  //alert(thisPageUrl);
	  //alert(thisPageTitle);
	  
	  var theShareCode = document.getElementById("shareLinks").innerHTML;
	  
	  diggLink = "<a target='_blank' href='http://digg.com/submit?phase=2&amp;url=" + thisPageUrl + "' alt='Digg'><img src='/times/images/sharelogos/digg.gif' width='16'  border='0' alt='Digg'></a>";
	  facebookLink = "<a target='_blank' href='http://www.facebook.com/share.php?u=" + thisPageUrl + "' alt='Facebook'><img src='/times/images/sharelogos/facebook.gif' width='16'  border='0' alt='Facebook'></a>";
	 /*myspaceLink = "<a target='_blank' href='http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=&amp;" + thisPageUrl + "' alt='MySpace'><img src='/times/images/sharelogos/myspace.gif' width='16'  border='0' alt='MySpace'></a>";*/
	 deliciousLink = "<a target='_blank' href='http://del.icio.us/post?url=" + thisPageUrl + "&title=" + thisPageTitle + "' alt='delicious'><img src='/times/images/sharelogos/delicious.gif' width='16'  border='0' alt='delicious'></a>";
	 stumbleLink = "<a target='_blank' href='http://www.stumbleupon.com/submit?url="+ thisPageUrl +"&title=" + thisPageTitle + "' alt='Stumbleupon'><img src='/times/images/sharelogos/stumbleupon.gif' width='16'  border='0' alt='Stumbleupon' alt='Stumbleupon'></a>";
	 technoratiLink = "<a target='_blank' href='http://www.technorati.com/faves?add=" + thisPageUrl + "' alt='Technorati'><img src='/times/images/sharelogos/technorati.gif' width='16'  border='0' alt='Technorati'></a>";
	 newsvineLink = "<a target='_blank' href='http://www.newsvine.com/_tools/seed&amp;save?popoff=0&amp;u="+ thisPageUrl +"&amp;h=" + thisPageTitle + "' alt='Newsvine'><img src='/times/images/sharelogos/newsvine.gif' width='16'  border='0'alt='Newsvine'></a>";
	 linkedinLink = "<a target='_blank' href='http://www.linkedin.com/shareArticle?mini=true&amp;url=" + thisPageUrl + "&amp;title="+ thisPageTitle + "&amp;' alt='Linkedin'><img src='/times/images/sharelogos/linkedin.gif' width='16'  border='0' alt='Linkedin'></a>";
	 furlLink = "<a target='_blank' href='http://furl.net/storeIt.jsp?u="+ thisPageUrl +"&t=" + thisPageTitle + "' alt='Furl'><img src='/times/images/sharelogos/furl.gif' width='16'  border='0' alt='Furl'></a>";
	 
	 newHTML = diggLink + facebookLink /*+ myspaceLink*/ + deliciousLink + stumbleLink + technoratiLink + newsvineLink + linkedinLink + furlLink ;
	 document.getElementById("shareLinks").innerHTML = newHTML ;
		 
		 
}
