// Barra de Compartilhamento
// Twitter / Facebook / Orkut / Buzz
// By SemNome.net
// Direitos Reservados
// Proibida a reprodução total ou parcial desse script, também qualquer modificação sem a autorização do autor

function compartilha(obj){
//Variáveis
	twitter = obj.twitter;
	facebook = obj.facebook;
	url = encodeURIComponent(obj.url);
	title = encodeURIComponent(obj.titulo);
	modelo = obj.modelo;
	tamanho = obj.tamanho;
//Valores Padrão
	if(modelo!="botao"&&modelo!="icone"){
		modelo = botao;
	}
	if(tamanho!="pequeno"&&tamanho!="grande"){
		tamanho = grande;
	}
//Mudança de modelos
	if(modelo=="botao" && tamanho =="pequeno"){
		twitterimg = "http://www.euqueroeliminar.com.br/wp-content/themes/bonasoul-2011/_img/bt-twitter.png";
		facebookimg = "http://www.euqueroeliminar.com.br/wp-content/themes/bonasoul-2011/_img/bt-facebook.png";
		largura = 26;
		altura = 25;
	}
//Botões
	if(twitter=="sim"||twitter=="yes"){
		twitterb = '<a class="twittershare" href="http://twitter.com/share?count=horizontal&text='+title+'&url='+url+'" title="Compartilhe no Twitter" target="_blank"><img alt="Compartilhe no Twitter" src="'+twitterimg+'" width="'+largura+'" height="'+altura+'" border="0" class="sharebutton"/></a>';
	} else{ twitterb = "";}
	if(facebook=="sim"||facebook=="yes"){
		facebookb = '<a class="facebookshare" href="http://www.facebook.com/sharer.php?u='+url+'&t='+title+'" title="Compartilhe no Facebook" target="_blank"><img alt="Compartilhe no Facebook" src="'+facebookimg+'" width="'+largura+'" height="'+altura+'" border="0" class="sharebutton"/></a>';
	} else{ facebookb = ""; }


document.write(twitterb+"\n"+facebookb);

}
