// JavaScript Document
//<SCRIPT LANGUAGE="JavaScript">
<!--

// Copyright (c) 2000 internet.com Corp. 
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

var now = new Date();
var description = "Opening Night!";
var then = new Date("March 18, 2010"); // March 12, 2009
var left = then.getTime() - now.getTime();
var later = new Date("March 31, 2010");  // March 12, 2009
var days = Math.floor(left / (1000 * 60 * 60 * 24));
// var hours = Math.floor(left / (1000 * 60 * 60));// var minutes = Math.floor(left / (1000 * 60));// var seconds = Math.floor(left / 1000);
document.write("<br>")
if (days > 1)

	document.write("Only " + days + " days left until " + description)
else if (days == 1)
  document.write("Only one day left until " + description)
else if (days == 0)
  document.write("Today is " + description)
else if (days < 0 & now <= later)
    document.write("Last Performance was March 21st.")  // Last Performance was March 15th.
else if (days < 0 & now > later)
	document.write("Come Share the Magic!");
//document.write("<br>Click here to go to the Nixon Geography Expedition Website.</h2></center>");
// -->
 
<!-- 
