/* This function is to ensure that users mark the non-commercial declaration checkbox
for .asn.au and .org.au domains */

function AUPolicyChecker()
{
	if (document.AUPolicyForm.NonCommercialDecl.type == "checkbox")
	{
		if (!document.AUPolicyForm.NonCommercialDecl.checked)
		{
			alert("You must tick the Non-Commercial Declaration box.\nPlease try again.");
			document.AUPolicyForm.NonCommercialDecl.focus();
			return false;
		}
	}
}

