function validateForm()
{
	trimFields();
	if(obj.name.value == '')
	{
		alert("Please provide the name of the Person.");
		obj.name.focus();
		return false;
	}
	if(obj.email.value == '')
	{
		alert("Please enter your Email.");
		obj.email.focus();
		return false;
	}
	if(!chkEmail(obj.email.value))
	{
		alert("Please enter a valid Email Address.");
		obj.email.focus();
		obj.email.select();
		return false;
	}
	if(obj.company.value == '')
	{
		alert("Please enter your Company Name.");
		obj.company.focus();
		return false;
	}
	if(obj.session_num.value == '')
	{
		alert("Please enter your Leader’s Code Session Number.");
		obj.session_num.focus();
		return false;
	}
	if(obj.goal.value == '')
	{
		alert("Please enter your Goal.");
		obj.goal.focus();
		return false;
	}
	if(obj.target_date.value == '')
	{
		alert("Please enter your Target Date.");
		obj.target_date.focus();
		return false;
	}
	if(obj.action_steps.value == '')
	{
		alert("Please enter your Action Steps.");
		obj.action_steps.focus();
		return false;
	}
	if(obj.measure_improvement.value == '')
	{
		alert("Please enter your Measure Improvement.");
		obj.measure_improvement.focus();
		return false;
	}
	if(obj.captcha.value == '')
	{
		alert("Please enter the security code shown.");
		obj.captcha.focus();
		return false;
	}
	return true;
}
function printOrder()
{
	window.open('print_personal_action_plan.php', '', 'width=600,height=650,left=200,scrollbars=1,top=30,toolbar=0,menubar=1,location=0');
}
