//Criacao: Luiz Carlos Gomes Sobrinho - Portal BSB Comunicacao & Marketing

<!--
function ShowHours() {
	TodaysHour = new Date()
	horas = TodaysHour.getHours()
	minutos = TodaysHour.getMinutes()

	if (horas < 10)
		horas= "0" + horas

	if (minutos < 10)
		minutos = "0" + minutos

document.write(horas+":"+minutos)
}

function ShowTodayDate() {
	now = new Date()
	dia = now.getDate()
	mes = now.getMonth() + 1
	ano = now.getFullYear()

	if (dia < 10)
		dia = "0" + dia
	if (mes < 10)
		mes = "0" + mes
	if (ano < 2000)
		ano = "19" + ano

	document.write(dia+"/" +mes+ "/" +ano)

}

// -->
