<!--
//Script courtesy of Sharon Gartenberg's Date Countdown
//JavaScript generator under the GNU General Public License
//Modified by The Rust Works

var today = new Date;
var Future0 = new Date;
ThisYear = 2006;

var FutureMonth = 7;
var FutureDate = 18;
var faraevent = "Openning Night";

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 class=\"openDate\">There are ", daysleftint, " days until ", faraevent , "!<!-- Reserve your <a href=\"../../tickets/index.html\" title=\"Contact Ticketing.\">tickets</a> today.--></span>");
else if (daysleftint == 1)
document.write("<span class=\"openDate\">", faraevent, " is tomorrow!Reserve your <a href=\"../../tickets/index.html\" title=\"Contact Ticketing.\">tickets</a> quickly.</span> ");
else if (today1 == future1)
document.write("<span class=\"openDate\">", faraevent, " is tonight!</span> ");
//-->
