<!-- Copyright 2002 Morrison SoftDesign

var whitespace="- \t\n\r";


function checkFields(form){
	
	if(form.name.value.length == 0){
		alert("You must include your full name.");
		return false;}
		
	if(form.email.value.length == 0){
		alert("You must include your E-Mail address.");
		return false;}
	
	if(form.subject.value.length == 0){
		alert("You must include your message subject.");
		return false;}	
		
	if(form.message.value.length == 0){
		alert("You must include your message.");
		return false;}	
										
	return true;

}


function goHome(){
	homeURL = "http://www.CrossWayNC.org/";
	open(homeURL,"_self");}

	
function registerAgain(){
	homeURL = "https://secure.pageplanet.com/crosswaync/????/";
	open(homeURL,"_self");}
	
//-->
