<!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)
          {
		day=getDay()
		month=getMonth()+1
		this.document.write('Beijing  '+getDate()+'.'+month+'.'+getFullYear()+' ')
	}
	if (day==1){document.write('lunes')}
	if (day==2){document.write('martes')}
	if (day==3){document.write('miércoles')}
	if (day==4){document.write('jueves')}
	if (day==5){document.write('viernes')}
	if (day==6){document.write('sábado')}
	if (day==0){document.write('domingo')}
	document.write('<br>')
}

PageDate()

// -->