<FONT COLOR="darkblue">Minha p�gina esta no ar
<SCRIPT LANGUAGE="JavaScript">
today = new Date()
        var thisyear = today.getYear()
        var thismonth = today.getMonth()
        var thisdate = today.getDate()
//modifique aqui

        var thatyear = 96   // ano que sua p�gina entrou no ar
        var thatmonth = 5   // o m�s
        var thatdate = 3  // e o dia

// nao modifique mais nada
        var prestring = "est� no ar a "
        var fromyears = (thisyear - thatyear)
        var datenumber = (thisdate + thatdate)
                if (thismonth == 0)
                        monthdates = (31)
                else if (thismonth == 1)
                        monthdates = (28)
                else if (thismonth == 2)
                        monthdates = (31)
                else if (thismonth == 3)
                        monthdates = (30)
                else if (thismonth == 4)

                        monthdates = (31)
                else if (thismonth == 5)
                        monthdates = (30)

                else if (thismonth == 6)
                        monthdates = (31)
                else if (thismonth == 7)
           
             monthdates = (31)
                else if (thismonth == 8)
                        monthdates = (30)
                else if (thismonth == 9)
                        monthdates = (31)
                else if (thismonth == 10)
                        monthdates = (30)
                else if (thismonth == 11)
                        monthdates = (31)
                if (fromyears == 0)
                        yearssince = (prestring)
                else if (fromyears == 1)
                        yearssince = (prestring + " ano")
                else yearssince = (prestring + fromyears + " anos")
                if (thisdate > thatdate)
                        predatessince = (thisdate - thatdate)
                else predatessince = (thisdate + monthdates - thatdate)
                        if (predatessince == 0)
                              datessince = ("")


                        else if (predatessince == 1)


                                datessince = ("1 dia.")


                        else datessince = (predatessince + " dias.")
                if (thisyear > thatyear) {
                        if (thismonth >= thatmonth)
                                premonthssince = (thismonth - thatmonth)
                       else premonthssince = (12 + thismonth - thatmonth)
}

                else premonthssince = (thismonth - thatmonth)
                if (monthdates < datenumber)
                        premonthssincetwo = (premonthssince + 1)
                else premonthssincetwo = (premonthssince)
                                if (premonthssincetwo == 0)

                                       monthssince = (" ")
                                else if (premonthssincetwo == 1)

                                        monthssince = ("1 m�s")
                                else monthssince = (premonthssincetwo + " meses")
                if (yearssince == prestring)
                        commaone = (" ")
                else {
                      if (monthssince == " ")
                                (commaone = " e ")

                        else commaone = (", ")
}
                if (commaone == " e ")

                        commatwo = (" ")
                else if (commaone == ", ")


                        commatwo = (", e ")


                else if (yearssince == prestring) {


                                        if (monthssince == " ")


                                                (commatwo = " ")


                                        else commatwo = (" e ")


}
var finalstring = ""
        finalstring += (yearssince)
        finalstring += (commaone)
        finalstring += (monthssince)
        finalstring += (commatwo)
        finalstring += (datessince)
document.write(finalstring)
</script><BR></font><BR>