<!--
function check_all(form) {

        if (form.txt_fn_1_1.value == "") {
                alert("NAME field cannot be left blank!\n\nPlease type your name in the given form."); // Validate NAME field
                form.txt_fn_1_1.focus();
                return false;
        }

        if (form.txt_fn_3_1.value == "") {
                alert("SUBURB field cannot be left blank!\n\nPlease type your suburb in the given form."); // Validate SUBURB fiels
                form.txt_fn_3_1.focus();
                return false;
        }

		if (!form.txt_fn_5_1.value.match(/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/)) {
                alert("EMAIL ADDRESS field cannot be left blank!\n\nPlease type your email (e.g. you@youremail.com)."); // Validate EMAIL ADDRESS field
                form.txt_fn_5_1.focus();
                return false;
        }

        if (form.lst_fn_6.value == "--") {
                alert("Please choose one of the INFLATABLE that you interested in!\n\nPlease select the inflatable you interested in."); // Validate INFLATABLE field
                form.lst_fn_6.focus();
                return false;
        }

        if (form.txt_fn_7_1.value == "") {
                alert("PARTY DATE field cannot be left blank!\n\nPlease type a party date in the given form."); // Validate PARTY DATE field
                form.txt_fn_7_1.focus();
                return false;
        }
}

-->