// bio.js

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
biografia = "Fernando Rodrigues, 41,<br>é repórter e colunista<br>da Folha de S. Paulo<br>em Brasília. Na Folha,<br>foi editor de economia,<br>correspondente em Nova<br>York, Washington e Tóquio.<br>Ganhou prêmios Esso<br>em 1997, 2002 e 2003.";
data1 = "27.set.2004 - 20h45"; // coluna
data2 = "01.out.2004 - 21h40"; // base de dados

// Show/HblockDive functions for pointer objects

function show() {
	//if (ns4) document.layers['blockDiv'].visibility = "hide"
	if (ie4) document.all['blockDiv'].style.visibility = "visible"
}

function hide() {
	//if (ns4) document.layers['blockDiv'].visibility = "hide"
	if (ie4) document.all['blockDiv'].style.visibility = "hidden"
}

function bio() {
  b="<table width=150 cellspacing=0 cellpadding=0 border=0>";
  b+="<tr>";
  b+="<td width=150 colspan=3 bgcolor=#808000><img src=http://www.uol.com.br/images/x.gif width=1 height=2></td>";
  b+="</tr>";
  b+="<tr> ";
  b+="<td width=2 bgcolor=#808000><img src=http://www.uol.com.br/images/x.gif width=2 height=1></td>";
  b+="<td width=146>";
  b+="<table width=146 cellspacing=0 cellpadding=3 border=0>";
  b+="<tr>";
  b+="<td> <font face=verdana,arial size=1>";
  b+=biografia;
  b+="</font></td>";
  b+="</tr>";
  b+="</table>";
  b+="</td>";
  b+="<td width=2 bgcolor=#808000><img src=http://www.uol.com.br/images/x.gif width=2 height=1></td>";
  b+="</tr>";
  b+="<tr>";
  b+="<td width=150 colspan=3 bgcolor=#808000><img src=http://www.uol.com.br/images/x.gif width=1 height=2></td>";
  b+="</tr>";
  b+="</table>";
  document.write(b);
}