// JavaScript Document

function submit_form(address) {
	answer = alert("Your form is being submitted, this may take some time depending on the size of any attachments you are sending, please click 'ok' to continue and wait for the confirmation page.")	;
	//document.form.submit_btn.disabled=true;

	// IF ANSWER IS TRUE THEN DO THE FOLLOWING
	if (answer) {
		location = address;
}

	
}