function confirmation() {
	var answer = confirm("\nEMAIL DISCLAIMER \n \nThis email will not create any attorney-client relationship. In addition, Santen & Hughes cannot and will not have any duty to keep confidential any information that you send in this email. If you have any questions, please contact one of our attorneys by phone. Please indicate your agreement to these terms by clicking OK below.\n\n")
	if (answer){
		return true
	}
	else{
		return false
	}
}