document.write( "<style TYPE='text/css'>#vidzit {color: black; line-height:1.1em; background: #ffffff; border:0px; padding: 2px; font-family: arial; font-size: 10px;}</style><div id='vidzit'><a href='http://cosmo2503.blogspot.com/' style='color:black'>Cooketa</a><br/>")
var millisecs_per_day=86400000
// set countdown time in milliseconds
// put desired day as arguments to Date.UTC 
// in the order:
// year, month (remember January is 0), day of month, offset from GMT
// NOTE: we are using the offset because that represents midnight 
// (beginning of the day) in a specific timezone
var countdown_time=Date.UTC(2010,2,31,+0);
// get the current time and convert to milliseconds
var now=new Date();
var now_millisecs=now.valueOf();

var day_cnt= Math.ceil(( countdown_time - now_millisecs)/86400000 )

// display the number of days left (or since)
if (day_cnt == 21 )
{
document.write("jo&#353; " + day_cnt + " dan")
}
else if (day_cnt > 1 && day_cnt != 21)
{
document.write("jo&#353; " + day_cnt + " dana")
}
else if (day_cnt == 1 )
{
document.write("jo&#353; " + day_cnt + " dan")
}
else if (day_cnt == 0 )
{
document.write("poslednji dan za u&#269;e&#353;&#263;e")
}
else
{
// multiple days ago
}
//document.write("<br/><a href='http://kuvarigrice.blogspot.com/' style='color:black'>glasajte za novi blog!</a>")
document.write("</div>")