function charCntCheck(n){
	formContent=n.form.storyText.value
	n.form.displayCount.value=formContent.length

function validateMe() {
	if(document.getElementById('interests').value.length > 100){
		alert("Your description of your interests is too long for our systems. Please reduce the length of your description and resubmit.");
		return false;
		Interests.focus();
	}
	if(document.getElementById('skills').value.length > 100){
		alert("Your description of your skills is too long for our systems. Please reduce the length of your description and resubmit.");
		return false;
		Skills.focus();
	}
	return true;
}