function shareFacebook() {


    shareUrl = document.location.href;
    
  var targetUrl = 'http://www.facebook.com/sharer.php?u=' + 
      encodeURIComponent(shareUrl) + 
      '&t=' + encodeURIComponent(document.title);

 // window.open(targetUrl,'sharer','toolbar=0,width=626,height=436');
  window.open(targetUrl);
}


function shareMySpace() {

    shareUrl = document.location.href;

  document.getElementById('myspace_posting_form').submit();
}

function shareTwitter() {


    shareUrl = document.location.href;
    
  var targetUrl = 'http://twitter.com/favorites.xml' 

  window.open(targetUrl);
}

function shareDelicious() {
		var shareTitle=document.title;
	var shareContent=document.description;

    shareUrl = document.location.href;

  var targetUrl = 'http://delicious.com/post?v=4&noui&amp;jump=close' +
      '&url=' + encodeURIComponent(shareUrl)     +
      '&title=' + encodeURIComponent(shareTitle) + 
      '&notes=' + encodeURIComponent(shareContent);

  //window.open(targetUrl,'sharer','toolbar=0,width=650,height=436');
   window.open(targetUrl);
}


function shareMeneame() {

    shareUrl = document.location.href;

  var targetUrl = 'http://meneame.net/submit.php?url=' +
      encodeURIComponent(shareUrl);

  window.open(targetUrl);
}


function shareGoogleFavorites() {


    shareUrl = document.location.href;
	var shareTitle=document.title;
	var shareContent=document.description;
    
  var targetUrl = 'https://www.google.com/accounts/ServiceLogin?hl=es&continue=http://www.google.com/bookmarks/mark%3Fop%3Dadd%26bkmk%3D'+encodeURIComponent(shareUrl)+'%26title%3D'+encodeURIComponent(shareTitle)+'%253F%26annotation%3D&nui=1&service=bookmarks';

  window.open(targetUrl);
}

function shareBlogger() {


    shareUrl = document.location.href;
	var shareTitle=document.title;
	var shareContent=document.description;
    
  var targetUrl = 'https://www.google.com/accounts/ServiceLogin?service=blogger&continue=https%3A%2F%2Fwww.blogger.com%2Floginz%3Fd%3Dhttp%253A%252F%252Fwww.blogger.com%252Fblog_this.pyra%253Ft%2526u%253D'+encodeURIComponent(shareUrl)+'%2526n%253D'+encodeURIComponent(shareTitle)+'%25253F%26a%3DADD_SERVICE_FLAG&passive=true&alinsu=0&aplinsu=0&alwf=true&hl=es&skipvpage=true&rm=false&showra=1&fpui=2&naui=8';

  window.open(targetUrl);
}


function shareHotmail() {


    shareUrl = document.location.href;
	var shareTitle=document.title;
	var shareContent=document.description;
var targetUrl = 'http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1265910097&rver=6.0.5285.0&wp=MBI&wreply=http:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dcompose%253fsubject%253d'+encodeURIComponent(shareTitle)+'%25253f%2526body%253d'+encodeURIComponent(shareUrl)+'%25250a%25250ashared%252bvia%252b'+encodeURIComponent(shareUrl);

  window.open(targetUrl);
}
