function addFav(){
   var url         = document.location;
   var title       = document.title;
   var browserName = navigator.userAgent;

	title = title.replace("| ","[");
	title = title+" - AosJovens.com.br]";

   if (browserName.indexOf("MSIE") != -1)
	{
      window.external.AddFavorite(url, title);
   };

	if (browserName.indexOf("Firefox") != -1)
	{
      if (window.sidebar) window.sidebar.addPanel(title, url,"");
   };
};


function indicar(tipoIndicacao){
   var url         = document.location;
   var titlePage   = document.title;

	titlePage = titlePage.replace("| Aos Jovens","");

	if (titlePage.indexOf("O Blog do Jovem") != -1)
	{
		tipoIndicacao = "s";
		titlePage = "AosJovens.com.br";
	}
	else
	{
		tipoIndicacao = "a";
	};

   window.open("indique.php?t="+tipoIndicacao+"&n="+titlePage+"&ref="+url,"indique_aos_jovens","width=490,height=546,left=21,top=21,resizable=no,scrollbars=no,status=yes,location=no,toolbar=no,menubar=no");
};