today = new Date();
denvtydnu=today.getDay();
den=today.getDate();
mesic=(today.getMonth()+1);
rok=(today.getFullYear());

if (denvtydnu == 0)
{
document.write("neděle ");
}
if (denvtydnu == 1)
{
document.write("pondělí ");
}
if (denvtydnu == 2)
{
document.write("uterý ");
}
if (denvtydnu == 3)
{
document.write("středa ");
}
if (denvtydnu == 4)
{
document.write("čtvrtek ");
}
if (denvtydnu == 5)
{
document.write("pátek ");
}
if (denvtydnu == 6)
{
document.write("sobota ");
}

document.write(den);
document.write(".");

if (mesic == 1)
{
document.write("ledna ");
}

if (mesic == 2)
{
document.write("února ");
}

if (mesic == 3)
{
document.write("března ");
}

if (mesic == 4)
{
document.write("dubna ");
}

if (mesic == 5)
{
document.write("května ");
}

if (mesic == 6)
{
document.write("června ");
}

if (mesic == 7)
{
document.write("července ");
}

if (mesic == 8)
{
document.write("srpna ");
}

if (mesic == 9)
{
document.write("září ");
}

if (mesic == 10)
{
document.write("října ");
}

if (mesic == 11)
{
document.write("listopadu ");
}

if (mesic == 12)
{
document.write("prosince ");
}

document.write(rok);
