function fecha(){
	today = new Date();
	day = today.getDay();
	ano = today.getYear();if(ano<1900){ano=ano+1900;}
	month = today.getMonth()+1;if(month<9){month='0'+month;}

	today = new Date()

	Minutos=today.getMinutes(); if (Minutos<10){Minutos='0'+Minutos;}
	return today.getDate()+"/"+month+"/"+ano+"<br>"+today.getHours()+":"+Minutos+' h';
}
