function openOut()
{
	Elem = document.getElementById('indice').getElementsByTagName('A');
	Alen = Elem.length;
	for(i=0;i<Alen;i++) 
	{
		if(Elem[i].href.indexOf("http://tecnologia.uol.com.br/") == -1)
		Elem[i].target = '_blank';
	}
}
onload = (document.getElementById) ? openOut : null ;