var fecha= new Date()
var anio=fecha.getFullYear()
var mes=fecha.getMonth()+1
var hoy=fecha.getDate()
document.write(anio+"/"+mes+"/"+hoy)
