function checkCheckBox(f){
if (f.agree.checked == false )
{
alert("Please tick the 'I Accept' box to continue");
return false;
}else
return true;
}


