// JavaScript Document
function ValidateDateGreaterToday(dateBox)
			{
			var comparisonDate= new Date();
			var enteredDate= new Date(document.getElementById(dateBox).value);
			var intDays;
			comparisonDate.setDate(comparisonDate.getDate());
			if(enteredDate < comparisonDate)
			{
				alert('The shipping date can not be earlier than tomorrow.');
				return false;
			}
			else
			{
				return true;
			}
			}
function ValidateDates(dateBox1,dateBox2,dateBox3)
			{
			var comparisonDate= new Date();
			var shipDate= new Date(document.getElementById(dateBox1).value);
			var activeDate= new Date(document.getElementById(dateBox2).value);
			var returnDate= new Date(document.getElementById(dateBox3).value);
			var intDays;
			comparisonDate.setDate(comparisonDate.getDate());
			if(shipDate < comparisonDate)
			{
				alert('The shipping date can not be earlier than tomorrow.');
				return false;
			}
			else
			{
				if ((returnDate > activeDate) && (activeDate > shipDate))
					{
						return true;
					}
				else
					{
						alert('Please check your delivery, activation, and return dates.  They overlap.');
						return false;
					}
			}
			}
