function check() 
{
	if (document.form1.accept.checked != true) 
	{
		alert("Please tick the box to confirm you have read and accepted our Terms and " +
				"Conditions and Refund Policy. Thank you.");
		document.form1.accept.focus();
		document.form1.accept.select();
		return false;
	}
	else
		return true;
}