<!--
function fnCheck()
{
	Firstname=	document.frmLandPage.TxtFirstName.value;
	LastName=	document.frmLandPage.TxtlastName.value;
	Email	=	document.frmLandPage.Txtemail.value;
	Phone1  =	document.frmLandPage.Txtphone1.value;
	Address	=	document.frmLandPage.TxtAddress.value;
	City	=	document.frmLandPage.TxtCity.value;
	State	=	document.frmLandPage.cboState[document.frmLandPage.cboState.selectedIndex].value;
	Zip		=	document.frmLandPage.TxtZip.value;
	Country	=	document.frmLandPage.cboCountry[document.frmLandPage.cboCountry.selectedIndex].value;
	Age		=	document.frmLandPage.cboAge[document.frmLandPage.cboAge.selectedIndex].value;
	vBusiness=	document.frmLandPage.TxtBusiness.value;
	vHours	=	document.frmLandPage.cboHours[document.frmLandPage.cboHours.selectedIndex].value;
	GetStart=	document.frmLandPage.cboGetStart[document.frmLandPage.cboGetStart.selectedIndex].value;
	vMoney	=	document.frmLandPage.cboMoney[document.frmLandPage.cboMoney.selectedIndex].value;
	vTimeToReach=document.frmLandPage.cboTimeToReach[document.frmLandPage.cboTimeToReach.selectedIndex].value;
	vFindSiteBy=document.frmLandPage.cboFindSiteBy[document.frmLandPage.cboFindSiteBy.selectedIndex].value;
	
	if (Firstname == '')
	{
		alert('Please enter the First Name');
		document.frmLandPage.TxtFirstName.focus();
		return false;
	}
	else if(LastName == '')
	{
		alert('Please enter the Last Name');
		document.frmLandPage.TxtlastName.focus();
		return false;
	}
	else if(Email == '')
	{
		alert('Please enter the Email');
		document.frmLandPage.Txtemail.focus();
		return false;
	}
	else if(Phone1 == '')
	{
		alert('The Phone Number is Incomplete');
		document.frmLandPage.Txtphone1.focus();
		return false;
	}
	else if(Address == '')
	{
		alert('Please enter the Address ');
		document.frmLandPage.TxtAddress.focus();
		return false;
	}
	else if(City == '')
	{
		alert('Please enter the City ');
		document.frmLandPage.TxtCity.focus();
		return false;
	}
	else if(State == '')
	{
		alert('Please select the State ');
		document.frmLandPage.cboState.focus();
		return false;
	}
	else if(Country == '')
	{
		alert('Please select the Country ');
		document.frmLandPage.cboCountry.focus();
		return false;
	}
	else if(Age == '')
	{
		alert('Please select the Age ');
		document.frmLandPage.cboAge.focus();
		return false;
	}
	else if(vBusiness == '')
	{
		alert('Please enter your current bussiness');
		document.frmLandPage.TxtBusiness.focus();
		return false;
	}
	else if(vHours == '')
	{
		alert('Please select the Hours you are ready to spend to build the business');
		document.frmLandPage.cboHours.focus();
		return false;
	}
	else if(GetStart == '')
	{
		alert('Please select when you will get started');
		document.frmLandPage.cboGetStart.focus();
		return false;
	}
	else if(vMoney == '')
	{
		alert('Please select how much money you can invest');
		document.frmLandPage.cboMoney.focus();
		return false;
	}
	else if(vTimeToReach == '')
	{
		alert('Please select the best time to reach you');
		document.frmLandPage.cboTimeToReach.focus();
		return false;
	}
	else if(vFindSiteBy == '')
	{
		alert('Please tell us how did you find our site');
		document.frmLandPage.cboFindSiteBy.focus();
		return false;
	}	
	else
	{
		document.frmLandPage.action = "SaveLP-C.asp?qryFrom=LP14-c.asp";
		document.frmLandPage.submit();
		return false;
	}
}  
//-->
