// JavaScript Document


function showMe() {
  totalPoints = parseInt(document.getElementById('q1').value) + parseInt(document.getElementById('q2').value) + parseInt(document.getElementById('q3').value) + parseInt(document.getElementById('q4').value) + parseInt(document.getElementById('q5').value) + parseInt(document.getElementById('q6').value) + parseInt(document.getElementById('q7').value) + parseInt(document.getElementById('q8').value) + parseInt(document.getElementById('q9').value) + parseInt(document.getElementById('q10').value);
  //alert(document.getElementById('q1').value);
  
  var boxStuff = '<h4>Your Score: <span>'+totalPoints + '</span></h4>';
  
  if (totalPoints < 16) {
	  boxStuff += '<p>Coaching is not for you right now.</p>';  
   } 
  else if (totalPoints > 15 && totalPoints < 31) {
	  boxStuff += '<p>Coaching could help you to see your life from a different viewpoint, as well as help you develop a plan to change what it is you would like to change. We only change when where we are is no longer comfortable.</p>';  
  }
  else {
	   boxStuff += '<p>Congratulations! You are ready for a coach! You are willing to do what it takes to create the life you deserve and desire.</p>'; 
  }
  
  document.getElementById('score').innerHTML = boxStuff;
  document.getElementById('scorebox').style.display = "block";
}


  function checkForm() {
    if (document.getElementById("name").value == '') {
	  alert ('Please Enter Your Name');
	  return false;
	}
	
	if (document.getElementById("email").value == '') {
	  alert ('Please Enter Your Email Address');
	  return false;
	}
	  
	 return true;
  }
