function checkForm(){
		if(document.form1.info.checked == true && document.form1.appendix.checked==true){
			document.form1.submit();
			return true;
		}else{
			alert("Please certify that information provided is true and agree to comply with Appendix I and Appendix II");
		}
		return false;
	}