/* FUNCTION SHARE */
function share(id){
	var share=document.getElementById('share-'+id)
	if(share.style.display=='block')
		share.style.display='none'
	else
		share.style.display='block'
}

/* FUNCTION SHARE BLIG */
function $(id){return document.getElementById(id)}
function removeHTMLTags(codigo){
	var strInputCode = codigo;
	strInputCode = strInputCode.replace(/&(lt|gt);/g, function (strMatch, p1){
		return (p1 == "lt")? "<" : ">";
	});
	var strTagStrippedText = strInputCode.replace(/<\/?[^>]+(>|$)/g, "");
	return strTagStrippedText;
}
function ferramentas_da_materia(texto){
	//var olho = "";
	//var form_blig='<form name="bligThis" target="BliG" method="POST" action="http://blig.ig.com.br/pop_blig.php" style="display:none">'+'<input type="hidden" name="titulo" value="'+titulo+'" />'+'<input type="hidden" name="olho" value="'+olho+'" />'+'<input type="hidden" name="texto" value="'+texto+'" />'+'<input type="hidden" name="url" value="'+url+'" />'+'</form>';
	//document.write(form_blig);
	alert(texto);
}
function blogThis(titulo,texto,url){
	var olho = "";
	var newindow = window.open("about:blank","BliG","menubar=0,resizable=0,width=350,height=250");
	var form_blig='<form name="bligThis" target="BliG" method="POST" action="http://blig.ig.com.br/pop_blig.php" style="display:none">'+'<input type="hidden" name="titulo" value="'+titulo+'" />'+'<input type="hidden" name="olho" value="'+olho+'" />'+'<input type="hidden" name="texto" value="'+texto+'" />'+'<input type="hidden" name="url" value="'+url+'" />'+'</form>';
	newindow.document.write(form_blig);
	newindow.document.bligThis.submit();
}