<!--
function trocaImg(a,b){
    document.images[a].src = b;
}
//-->
<!--
function openWindow(theURL,winName,winFeatures) { 
  window.open(theURL,winName,winFeatures);}
//-->
<!--
function resizeWindow(){
  var altura, largura;
  altura = document.images.img01.height + 50;
  largura = document.images.img01.width + 30;
  top.resizeTo(largura,altura);
  /*document.write(largura, ', ', altura);*/
}
//-->
<!--
	hoje = new Date()
	dia = hoje.getDate()
	dias = hoje.getDay()
	mes = hoje.getMonth()
	ano = hoje.getYear()
	if (dia < 10)
	dia = "0" + dia
	if (ano < 2000)
        ano = "19" + ano
	function CriaArray (n) {
	this.length = n }
	NomeMes = new CriaArray(12)
	NomeMes[0] = "Janeiro"
	NomeMes[1] = "Fevereiro"
	NomeMes[2] = "Mar&ccedil;o"
	NomeMes[3] = "Abril"
	NomeMes[4] = "Maio"
	NomeMes[5] = "Junho"
	NomeMes[6] = "Julho"
	NomeMes[7] = "Agosto"
	NomeMes[8] = "Setembro"
	NomeMes[9] = "Outubro"
	NomeMes[10] = "Novembro"
	NomeMes[11] = "Dezembro"
	//
function WriteDate() {
	document.write (""  + dia + " de " + NomeMes[mes] + " de " + ano + "")
}
//-->
