// JavaScript Document

function checkCheckBox(f){
if (f.agree.checked == false )
{
alert("You must agree with terms and conditions before continue");
return false;
}else
return true;
}

