<!-- 
function check()
{
var letters = document.survey.txteve_phone_ac.value.length+1;
if (letters > 3)
{document.survey.txteve_phone_pre.focus()}
}

function check2()
{
var letters2 = (document.survey.txteve_phone_pre.value.length) +1;
if (letters2 > 3)
{document.survey.txteve_phone_num.focus()}
}

function check3()
{
var letters3 = (document.survey.txteve_phone_num.value.length) +1;
if (letters3 > 4)
{document.survey.txtrdate.focus();}
}
var this_weekday_name_array = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")	//predefine weekday names
var this_month_name_array = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec")	//predefine month names
var this_month_fullname_array = new Array("January","February","March","April","May","June","July","August","September","October","November","December")	//predefine month names
var this_date_timestamp=new Date()	//get current day-time stamp

var this_weekday = this_date_timestamp.getDay()	//extract weekday

var this_date = this_date_timestamp.getDate()	//extract day of month
var this_month = this_date_timestamp.getMonth()	//extract month
var this_year = this_date_timestamp.getYear()//extract year
var this_hours = this_date_timestamp.getHours()//extract hours


if (this_year < 1000)
	this_year+= 1900;	//fix Y2K problem
if (this_year==101)
	this_year=2001;		//fix Netscape browsers - it displays the year as being the year 101!
var this_date_fullmonth_string = this_month_fullname_array[this_month] 
var this_date_string = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date + ", " + this_year	//concat long date string

if(this_hours>=4 && this_hours<12)
	var this_date_string_morning="Good Morning - "+this_date_string;
else
	if(this_hours>=12 && this_hours<18)
		var this_date_string_morning="Good Afternoon - "+this_date_string;
		else
			var this_date_string_morning="Good Evening - "+this_date_string;

var website_phone="1-800-777-8782";
-->