function validatorTryFree(f){
	if(f.joinemail.value==""){
		alert("You must enter your Email Address.");
		f.joinemail.focus();
		return;
	}
	if(f.joinfname.value==""){
		alert("You must enter your First Name.");
		f.joinfname.focus();
		return;
	}
	if(f.joinlname.value==""){
		alert("You must enter your Last Name.");
		f.joinlname.focus();
		return;
	}
	if(f.company.value==""){
		alert("You must enter your Company.");
		f.company.focus();
		return;
	}

	if(f.phone.value==""){
		alert("You must enter your Phone Number.");
		f.phone.focus();
		return;
	}
	if(f.password1.value==""){
		alert("You must enter your Password.");
		f.password1.focus();
		return;
	}
	if(f.password2.value==""){
		alert("You must confirm your Password.");
		f.password2.focus();
		return;
	}
	if(f.terms.checked==false){
		alert("You must agree to the SimplyCast terms and conditions.");
		f.terms.focus();
		return;
	}
	//f.actiontype.value=action;
	f.submit();
}