function validateMe(){
		theform = document.forms["newLead"]
		firstNameObj = theform["firstName"]
		lastNameObj = theform["lastName"]
		emailObj = theform["email"]
		
		homePhone1Obj = theform["homePhone1"]
		homePhone2Obj = theform["homePhone2"]
		homePhone3Obj = theform["homePhone3"]
		
		
		cellPhone1Obj = theform["cellPhone1"]
		cellPhone2Obj = theform["cellPhone2"]
		cellPhone3Obj = theform["cellPhone3"]
		
		stateObj = theform["state"]
		
		debtObj = theform["debt"]
		
		currentPastdueObj = theform["currentPastdue"]
		
		ownRentObj = theform["ownRent"]
		
		hardshipObj = theform["hardship"]
		
		if(firstNameObj.value == ""){
				showError(firstNameObj, "Please enter your  First Name.")			
				return false				
		}

		if(lastNameObj.value == ""){
				showError(lastNameObj, "Please enter your Last Name.")			
				return false				
		}
		
		if(emailObj.value == ""){
				showError(emailObj, "Please enter your email id.")			
				return false				
		}
		
		if(homePhone1Obj.value == ""){
				showError(homePhone1Obj, "Please enter your Day Phone number.")			
				return false				
		}

		if(homePhone2Obj.value == ""){
				showError(homePhone2Obj, "Please enter your Day Phone number.")			
				return false				
		}

		if(homePhone3Obj.value == ""){
				showError(homePhone3Obj, "Please enter your Day Phone number.")			
				return false				
		}
		
		
		if(cellPhone1Obj.value == ""){
				showError(cellPhone1Obj, "Please enter your Evening Phone number.")			
				return false				
		}
		
		if(cellPhone2Obj.value == ""){
				showError(cellPhone2Obj, "Please enter your Evening Phone number.")			
				return false				
		}
		
		if(cellPhone3Obj.value == ""){
				showError(cellPhone3Obj, "Please enter your Evening Phone number.")			
				return false				
		}

		if(stateObj.selectedIndex == 0){
				showError(stateObj, "Please select your state.")			
				return false				
		}		

		if(debtObj.selectedIndex == 0){
				showError(debtObj, "Please select your Debt Amount.")			
				return false				
		}		
		
		if(hardshipObj != null){
			hasSelected = false
			for(ctr = 0;ctr < hardshipObj.length;ctr++){
				if(hardshipObj[ctr].checked){
						hasSelected = true
						break
				}				
			}
			if(!hasSelected){
					showError(hardshipObj[0],"Please select an option for the Finacial hardship section.")			
					return false						
			}			
		}
		
		if(currentPastdueObj.selectedIndex == 0){
				showError(currentPastdueObj, "Please select your Current or Past Due.")			
				return false				
		}		

		if(ownRentObj.selectedIndex == 0){
				showError(ownRentObj, "Please select an option for Own or Rent.")			
				return false				
		}		
		
		return true;
	
	}