function validateBlogForm(theForm) {
		if (theForm.cScreenName.value==""){
		alert("Please enter a screen name.");
		theForm.cScreenName.focus();
		return(false);
		}

		Ctrl = theForm.cEmailAddress;
		if (Ctrl.value==" " || Ctrl.value.indexOf ('@',0) == -1){
		alert("Please enter your email address.");
		theForm.cEmailAddress.focus();
		return(false);
		}
		Ctrl = theForm.cEmailAddress;
		if (Ctrl.value==" " || Ctrl.value.indexOf ('.',0) == -1){
		alert("Please enter your email address.");
		theForm.cEmailAddress.focus();
		return(false);
		}
		if (theForm.blogComment.value==""){
		alert("Please enter your story.");
		theForm.blogComment.focus();
		return(false);
		}
		if (theForm.blogComment.value.indexOf ('<',0) != -1){
		alert("Please do not use this '<' syntax in your submission.");
		theForm.blogComment.focus();
		return(false);
		}
		if (theForm.blogComment.value.indexOf ('>',0) != -1){
		alert("Please do not use this '>' syntax in your submission.");
		theForm.blogComment.focus();
		return(false);
		}

    
		return(true);
	} 