// certificate_form_functions.js for trrs.org NameARose certificate creation

function Validate(form) {
	if (!checkBlank("your Rose Name", form.rose_name)) return false;
	if (!checkBlank("your Certificate Password", form.password)) return false;
	return true;
}

