// Rounded corners
DD_roundies.addRule('.rounded', '5px', true);

			//OP
	function toggleAccept () {

    if(

        (document.adminForm.accept_agreement.checked == true) 

    ){

        document.adminForm.sendbtn.disabled = false;


    } else {

        document.adminForm.sendbtn.disabled = true;

    }

    return true;

}



function sendApplication() {

	var curDate = new Date();

	d = curDate.getDate();

	m = curDate.getMonth();

	y = curDate.getYear();

	date = d+"/"+m+"/"+y; 

	document.adminForm.form_date.value = date;

	

	document.adminForm.action="https://backtothebible.filebound.com/plugins/HTML2EFORM.asp"

	document.adminForm.submit();

	document.adminForm.action="index2.php";

	document.adminForm.submit();

}

