
<!--
function mOvr(src,clrOver) {
 if (!src.contains(event.fromElement)) {
         src.style.cursor = 'hand';
         src.bgColor = clrOver;
        }
 }
 function mOut(src,clrIn) {
        if (!src.contains(event.toElement)) {
         src.style.cursor = 'default';
         src.bgColor = clrIn;
        }
 }
 function mClk(src) {
if(event.srcElement.tagName=='TD'){
        src.children.tags('A')[0].click();
}
}


//-->
	
<!--


	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 }


	NomeDia = new CriaArray(7)
	NomeDia[0] = "Domingo"
	NomeDia[1] = "Segunda"
	NomeDia[2] = "Ter&ccedil;a"
	NomeDia[3] = "Quarta"
	NomeDia[4] = "Quinta"
	NomeDia[5] = "Sexta"
	NomeDia[6] = "S&aacute;bado"

	//

	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 ("" + NomeDia[dias] + ", " + dia + " de " + NomeMes[mes] + " de " + ano + "")
}
//-->

