Mostrar los dias de vida de tu blog

Hace ya bastante tiempo en uno de mis blogs inserté un código para mostrar los días que este llevaba publicado en Internet, hoy he decidido desempolvado y aquí os lo dejo por si le encontráis alguna utilidad:

<script>

var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countup(yr,m,d){

var today=new Date()

var todayy=today.getYear()

if (todayy < 1000)

todayy+=1900

var todaym=today.getMonth()

var todayd=today.getDate()

var todaystring=montharray[todaym]+" "+todayd+", "+todayy

var paststring=montharray[m-1]+" "+d+", "+yr

var difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)

difference+=" dias"

document.write("Este blog nació hace "+difference+" y aquí seguimos!")

}

countup(2008,04,01)

</script>

Hoy es <script><!--

dows = new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado");

months = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
now = new Date();

dow = now.getDay();

d = now.getDate();

m = now.getMonth();

h = now.getTime();

y = now.getFullYear();

document.write(dows[dow]+" "+d+" de "+months[m]+" de "+y);

//--></script>


Los datos que os he remarcado en rojo, los podeis modificar segun vuestro idioma o a vuestro gusto.