//JavaScript File for Calendar Control
function checkDate(sender, args) 
{
      if (sender._selectedDate < new Date()) 
	  {
            alert("You cannot select a day before today!");
            sender._selectedDate = new Date();
            // set the date back to the today
            sender._textbox.set_Value(sender._selectedDate.format(sender._format))
        }

}
