
<!--

function CheckDate(den,mesic,rok) {

var today = new Date();
var month = today.getMonth() + 1;
var day = today.getDate();


        if (((den==day) && (mesic==month)) || ((den==day-1) && (mesic==month)) || ((den==day-2) && (mesic==month)) || ((den==day-3) && (mesic==month))) {

document.write("<span style='font-size: 11; color: #582100; font-weight: bold;'>[" + den + ". " + mesic + ". " + rok + "]</span>");}

        else  {

document.write("<span style='font-size: 11; color: #cccccc; font-weight: bold;'>[" + den + ". " + mesic + ". " + rok + "]</span>");}

}

//-->