fred = /[^A-Za-z\s+]/


function validateASearch(passForm){

	if (fred.test(passForm.allw.value)){		
	alert("You have entered an illegal character!")
	passForm.allw.focus()
	passForm.allw.select()	
	return false
	}

	if (fred.test(passForm.nowords.value)){		
	alert("You have entered an illegal character!")
	passForm.nowords.focus()
	passForm.nowords.select()	
	return false
	}
	
	if ((passForm.nowords.value == '')&&(passForm.allw.value == '')){
	alert("You didn't enter a search term!");
	passForm.allw.focus();
	passForm.allw.select();
	return false
	}
	
return true
}

function northSouth() {
var load = window.open('regions.html','','scrollbars=no,menubar=no,height=500,width=260px,resizable=yes,toolbar=no,location=no,status=no');
}

function unitsom() {
var load = window.open('unitsom.html','','scrollbars=no,menubar=no,height=500,width=260px,resizable=yes,toolbar=no,location=no,status=no');
}