<!--
var today = new Date;
var Future0 = new Date;
ThisYear = "2012";
var FutureMonth = "02"; //jan=00, dec=11
var FutureDate = "12"; //1=01
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("<b><span style='color:#006699'>", daysleftint, "</span> days left", "</b>");
else if (daysleftint == 1)
	document.write("<span style='color:red'>Opening tomorrow!</span>");
else if (today1 == future1)
	document.write("<span style='color:red'>The exhibition is opened!</span>");
//-->
