<!--
// 
function checkCheckBoxAgree(c){
if (c.checkbox.checked == false )
{ 
alert("Please tick the box to continue"); 
return false;
}else 
return true;
}
//-->
