function Fecha()
{
data = new Date();
document.write(data.getDate()  + " / "  + (data.getMonth() + 1) + " / " + data.getYear());
}