<!--
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;
	IReason	=	document.frmLandPage.cboInReason[document.frmLandPage.cboInReason.selectedIndex].value;
	GetStart=	document.frmLandPage.cboGetStart[document.frmLandPage.cboGetStart.selectedIndex].value;
	ImpNeed	=	document.frmLandPage.cboImpNeed[document.frmLandPage.cboImpNeed.selectedIndex].value;
	MoneyNeed=	document.frmLandPage.cboMoneyNeed[document.frmLandPage.cboMoneyNeed.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(IReason == '')
	{
		alert('Please select the reason');
		document.frmLandPage.cboIncomeReason.focus();
		return false;
	}
	else if(GetStart == '')
	{
		alert('Please select when you will get started');
		document.frmLandPage.cboGetStart.focus();
		return false;
	}
	else if(ImpNeed == '')
	{
		alert('Please select the thing which is important in business ');
		document.frmLandPage.cboImpNeed.focus();
		return false;
	}	
	else if(MoneyNeed == '')
	{
		alert('Please select the Money needed');
		document.frmLandPage.cboMoneyNeed.focus();
		return false;
	}		
	else
	{
		document.frmLandPage.action = "SaveLP-B.asp?qryFrom=LP14-b.asp";
		document.frmLandPage.submit();
		return false;
	}
}  
//-->
