<!--
var today = new Date;
var Future0 = new Date;
ThisYear = "2011";
var FutureMonth = "10"; //январь=00, декабрь=11
var FutureDate = "08"; //1=01, 31=31
var faraevent = "";

Future0.setMonth(FutureMonth, FutureDate);
Future0.setFullYear(ThisYear);
today1 = Date.parse(today);
future1 = Date.parse(Future0);
secleft = future1 - today1;
miliday = 24 * 60 * 60 * 1000;
daysleft = secleft/miliday;
daysleftint = Math.round(daysleft);

if (daysleftint > 1)
document.write("<span style='color:#ff0000;font-size:110%'>", daysleftint, "</span> <span style='color:#0059A1;font-size:100%'>days left", faraevent , "!</span>");
else if (daysleftint == 1)
document.write(faraevent, "<span style='color:#ff0000;font-size:110%'>Opening tomorrow!</span>");
else if (today1 == future1)
document.write(faraevent, "<span style='color:#ff0000;font-size:110%'>The exhibition is opened!</span>");
//-->
