function checkCheckoutForm2(intTotal, intMemberHas){		
	
	var objForm = document.getElementById("checkoutForm");
	
	if(intTotal > intMemberHas){
		alert('You do not have enough credit to complete this transaction!');
		return false;
	}
	
	if (trim(objForm.name.value).length < 3){
		alert("Please enter your first name.");
		objForm.name.value = trim(objForm.name.value);
		objForm.name.focus();
		return false;
	}
	
	if (trim(objForm.surname.value).length < 3){
		alert("Please enter your last name.");
		objForm.surname.value = trim(objForm.surname.value);
		objForm.surname.focus();
		return false;
	}
	
	if (trim(objForm.addr1.value).length < 2){
		alert("Please enter the first line of your shipping address.");
		objForm.addr1.value = trim(objForm.addr1.value);
		objForm.addr1.focus();
		return false;
	}
	
	if (trim(objForm.addr2.value).length < 2){
		alert("Please enter the second line of your shipping address.");
		objForm.addr2.value = trim(objForm.addr2.value);
		objForm.addr2.focus();
		return false;
	}
	
	if (trim(objForm.code.value).length < 2){
		alert("Please enter your postal code.");
		objForm.code.value = trim(objForm.code.value);
		objForm.code.focus();
		return false;
	}
	
	if (trim(objForm.city.value).length < 2){
		alert("Please enter the name of your city.");
		objForm.city.value = trim(objForm.city.value);
		objForm.city.focus();
		return false;
	}
	
	if (!objForm.agree.checked){
		alert("You must first agree to our Terms and Conditions before you hire.");
		return false;
	}
	
	return true;
}