
// (c) http://insighteye.com
function checkCheckBoxAgree(c){
if (c.agree_text.checked == false )
{ 
alert("Please tick the 'I accept' box to continue"); 
return false;
}else 
return true;
}
