// JavaScript Document

//--------------------------------------------------
// form submit confirmation

function sendForm() {
	return confirm("Is all the information correct?\n Hit OK to submit or CANCEL to make changes.");
}

//--------------------------------------------------