<!--//hide script
function checkme() {
missinginfo = "";
if (!document.form.agree.checked) {
missinginfo += "\n You must declare your proof of age (i.e. 18 years of age or over, or otherwise of legal drinking age in your jurisdiction) by checking the box before subscribing.";
}
if (missinginfo != "") {
missinginfo ="\n" +
" \n" +
missinginfo + "\n" +
"\n";
alert(missinginfo);
return false;
}
else {
return true;
}
}

// --->
