// JavaScript Document

function checkterms(){
	if($('input#termscheck').attr('checked')){
		$('form#EmploymentQuestionnaire').submit();					   
	} else {
		alert("You must accept the terms and conditions before continuing!");
	}
}
