<!--
flag=false	
function checkform()

{
	if (document.Entry.First_Name.value == null || document.Entry.First_Name.value.length == 0) 
	{
		alert("\nPlease enter your first name.");
		document.Entry.First_Name.focus();
		return false;
	}


	if (document.Entry.Last_Name.value == null || document.Entry.Last_Name.value.length == 0) 

	{
		alert("\nPlease fill in your last name.");
		document.Entry.Last_Name.focus();
		return false;
	}

	
		if (document.Entry.Billing_Address.value == null || document.Entry.Billing_Address.value.length == 0) 

	{
		alert("\nPlease fill in your address.");
		document.Entry.Billing_Address.focus();
		return false;
	}


		if (document.Entry.Billing_City.value == null || document.Entry.Billing_City.value.length == 0) 

	{
		alert("\nPlease fill in your city.");
		document.Entry.Billing_City.focus();
		return false;
	}

		
		if (document.Entry.Billing_Zip_Code.value == null || document.Entry.Billing_Zip_Code.value.length == 0) 

	{
		alert("\nPlease fill in your zip code.");
		document.Entry.Billing_Zip_Code.focus();
		return false;
	}


		if (document.Entry.Day_Phone.value == null || document.Entry.Day_Phone.value.length == 0) 

	{
		alert("\nPlease fill in your day phone.");
		document.Entry.Day_Phone.focus();
		return false;
	}


		if (document.Entry.Evening_Phone.value == null || document.Entry.Evening_Phone.value.length == 0) 

	{
		alert("\nPlease fill in your evening phone.");
		document.Entry.Evening_Phone.focus();
		return false;
	}



	if (!e(document.Entry.Email.value))

	{
		alert("Please include a proper e-mail address, of the form id@domain.zzz or id@domain.xx.zzz.");
		document.Entry.Email.focus();
		//f(fld);
		return false;
	}

	
flag=true
	

}



function e(s) {

	rex=true;

	if (window.RegExp) 

	{

		st="a";ex=new RegExp(st);



		if (st.match(ex)) {

		r1=new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");

		r2=new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");

		b=(!r1.test(s)&&r2.test(s));

		}

		else 

		{

			rex=false;

		}

	} 

	else

	{

		rex=false;

	}

	if(!rex) b=(s.indexOf("@")>0 && s.indexOf(".")>0 && s!="" && s!="enter e-mail");

	return (b);

}



function f(h) 

{

	h.focus();

	h.select();

}



function val(fld) 

{

	s=fld.value;

	if(e(s)) 

	{

		if (checkform()) 

		{

		document.Entry.datatype.value = "Todd";

		}

		else 

		{

			//f(fld);

			return false;

		}



		if (clearform()); 

	} 

	else 

	{

		alert("Please include a proper e-mail address.");

		document.Entry.email.focus();

		//f(fld);

		return false;

	}

}
function onExit()
{
h.select();

}


// -->
