// Barra de Compartilhamento
// Twitter / Facebook / Orkut / Buzz

function compartilha(obj){
//Variáveis
	twitter = obj.twitter;
	facebook = obj.facebook;
	orkut = obj.orkut;
	buzz = obj.buzz;
	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 = "imagens/twitterp.png";
		facebookimg = "imagens/facebookp.png";
		orkutimg = "imagens/orkutp.png";
		buzzimg = "imagens/buzzp.png";
		largura = 78;
		altura = 20;
	} else if(modelo=="botao" && tamanho =="grande"){
		twitterimg = "imagens/twitter.gif";
		facebookimg = "imagens/facebook.gif";
		orkutimg = "imagens/orkut.gif";
		buzzimg = "imagens/buzz.gif";
		largura = 101;
		altura = 26;
	} else if(modelo=="icone" && tamanho =="pequeno"){
		twitterimg = "imagens/icone_twitterp.gif";
		facebookimg = "imagens/icone_facebookp.gif";
		orkutimg = "imagens/icone_orkutp.gif";
		buzzimg = "imagens/icone_buzzp.gif";
		largura = 30;
		altura = 30;
	} else	if(modelo=="icone" && tamanho =="grande"){
		twitterimg = "imagens/icone_twitter.gif";
		facebookimg = "imagens/icone_facebook.gif";
		orkutimg = "imagens/icone_orkut.gif";
		buzzimg = "imagens/icone_buzz.gif";
		largura = 25;
		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 = ""; }
	if(orkut=="sim"||orkut=="yes"){
		orkutb = '<a class="orkutshare" href="http://promote.orkut.com/preview?nt=orkut.com&tt='+title+'&du='+url+'" title="Compartilhe no Orkut" target="_blank"><img alt="Compartilhe no Orkut" src="'+orkutimg+'" width="'+largura+'" height="'+altura+'" border="0" class="sharebutton"/></a>';
	} else{ orkutb = "";}
	if(buzz=="sim"||buzz=="yes"){
		buzzb = '<a class="buzzshare" href="http://www.google.com/buzz/post?url='+url+'&message='+title+'" title="Compartilhe no Google Buzz" target="_blank"><img alt="Compartilhe no Google Buzz" src="'+buzzimg+'" width="'+largura+'" height="'+altura+'" border="0" class="sharebutton"/></a>';
	} else{ buzzb = ""; }

document.write(twitterb+"\n"+facebookb+"\n"+orkutb+"\n"+buzzb);

}
