// JavaScript Document
var bar = 'AVANCE DESENVOLVIMENTO DE SISTEMAS - Seja Bem Vindo!!!.'; 
function st(){
    window.status = bar;
}
st();

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}

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.getYear()
if (dia < 10)
dia = "0" + dia
if (mes < 10)
mes = "0" + mes
if (ano < 2000)
ano = "19" + ano
document.write(dia+"-" +mes+ "-" +ano)
}