function myspace(T, C, U, L)
	{
   		var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(T)
		    + '&c=' + encodeURIComponent(C) + '&u=' + encodeURIComponent(U) + '&l=' + L;
	    window.open(targetUrl);
	}
function facebook() {
			u=location.href;
			t=document.title;
			
			window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
function twitter(nombre) {
		u=location.href;
		t=document.title;
		window.open('http://www.twitter.com/home?status=@atumesa_com Ordena_por_Internet  http://www.atumesa.com/'+nombre+'  ');
		return false;
	}
function google() {
		u=location.href;
		t=document.title;
		window.open('http://www.google.com/bookmarks/mark?op=edit&output=popup&' + 'bkmk=' + encodeURIComponent(u) + '&title=' + encodeURIComponent(t),'Google add','toolbar=0,status=0,width=626,height=436');
		return false;
	}
function windowsadd() {
		u=location.href;
		t=document.title;
		var targetUrl = 'https://favorites.live.com/quickadd.aspx?url=' +encodeURIComponent(u)+ '&title='+ + encodeURIComponent(t) +''
	    window.open(targetUrl);
		return false;
	}
  
  function bookmark() {
		u=location.href;
		t=document.title;
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(t,u,"");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( u, t); }
		else if(window.opera && window.print) { // Opera Hotlist
			return true; }
 }