/* This JavaScript file is for Dakota's feedback or other Bravenet forms. Made by Anne Rose. This will make Story Title, Name, and Email required fields. */


function checkData() 
// E-mail Form - Validator
// Anne Rose - http://annerose.cjb.net
	{
	var correct = true
	if (document.dakota_form.visitor_name.value == "") {correct = false; alert("Please enter your name.")}
	if (document.dakota_form.visitor_email_address.value == "") {correct = false; alert("Please enter your e-mail address.")}
	
		/*	You can add more variables above. The name after the word dakota_form has to match the name in the form below. */

	if (correct){alert("Thank you for taking the time to fill out this form.")}
	return correct
	}

function checkDataFF() 
	{
	var correct = true
	if (document.finalfrontier_form.visitor_name.value == "") {correct = false; alert("Please enter your name.")}
	if (document.finalfrontier_form.visitor_email_address.value == "") {correct = false; alert("Please enter your e-mail address.")}

		/*	You can add more variables above. The name after the word dakota_form has to match the name in the form below. */

	if (correct){alert("Thank you for taking the time to fill out this form.")}
	return correct
	}

	
