// Funções para compartilhamento
function addDelicious(){
	window.open('http://del.icio.us/post?v=4&noui&jump=close&url='+escape(urlComplete)+'&title='+escape(title), 'delicious','toolbar=no,width=700,height=400');
};
function addYahoo(){
	window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Eldorado&d=&u='+escape(urlComplete)+'&ei=UTF-8','popup', 'toolbar=no,width=700,height=400,scrollbar=yes',0);
};
function addTechnorati(){
	window.open('http://www.technorati.com/faves?add='+escape(urlComplete), 'technorati','toolbar=no,width=700,height=400,scrollbar=yes');
};
function addDigg(){
	window.open('http://digg.com/submit?phase=2&url='+escape(urlComplete)+'&title='+escape(title)+'&bodytext=&topic=', 'digg','toolbar=no,width=700,height=400,scrollbar=yes');
};
function addNewsvine(){
	window.open('http://newsvine.com/_wine/save?u='+escape(urlComplete)+'&title='+escape(title)+'&bodytext=&topic=', 'newsvine','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
};
function addFacebook(){
	window.open('http://www.facebook.com/sharer.php?u='+escape(urlComplete)+'&title='+escape(title)+'&bodytext=&topic=', 'facebook','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
};
function addLinkedIn(){
	window.open('http://www.linkedin.com/shareArticle?mini=true&url='+escape(urlComplete)+'&title='+escape(title)+ '&bodytext=&topic=', 'linkedin','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
};
function addStumbleupon(){
	window.open('http://stumbleupon.com/submit?url='+escape(urlComplete)+'&title='+escape(title)+'&bodytext=&topic=', 'sStumbleupon','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
};
function addWindowslive(){
	window.open('http://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url='+escape(urlComplete)+'&title='+escape(title)+ '&bodytext=&topic=', 'windowslive','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
};
function addReddit(){
	window.open('http://reddit.com/submit?url='+escape(urlComplete)+'&title='+escape(title)+'&bodytext=&topic=', 'reddit','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
};
function addLimao(){
	window.open('http://com.limao.com.br/app/favoritos/index.cfm?url_source='+escape(urlComplete)+'&title='+escape(title), 'Favoritos','toolbar=no,width=690,height=480,scrollbars=yes,resizable=yes');
};

function addTwitter(){
	if(!urlComplete)
		urlComplete = document.location;
	
	window.open('http://twitter.com/?status='+escape(urlComplete), 'twitter','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
}

function addGoogle(){
	window.open('https://www.google.com/bookmarks/mark?op=add&bkmk='+escape(urlComplete)+'&title='+escape(title)+'&annotation=', 'Google','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
}

function addMySpace(){
	window.open('https://secure.myspace.com/index.cfm?fuseaction=login.simpleform&featureName=postToV3&dest=http://www.myspace.com/Modules/PostTo/Pages/Default.aspx%3f%3ffuseaction%3dpostto%26amp;t%3d'+escape(title)+'amp;u%3d'+escape(urlComplete), 'My Space','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');	
}

