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');
		}
function twitter() {
		u=location.href;
		t=document.title;
		window.open('http://www.twitter.com/home?status=http://www.atumesa.com  ');
	}
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');
	}
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);
	}
  
  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; }
 }