// JavaScript Document

function sendMonteCarlo(chk)
{
	if(chk.checked == 1){
		return true;
	 }else{
	 	alert('You must Accept Terms and Conditions to Continue');	
	 	return false;
	}	
}

