function checkform(form) {
	if (form.firstname.value == "") {
		alert("Sorry you have not entered your First Name");
		form.firstname.focus();
		return false;
	}
        if (form.lastname.value == "") {
                alert("Sorry you have not entered your Last Name");
                form.lastname.focus();
                return false;
        }
        if (form.emailaddress.value == "") {
                alert("Sorry you have not entered your Email Address");
                form.emailaddress.focus();
                return false;
        }
        if (form.street.value == "") {
                alert("Sorry you have not entered your Street");
                form.street.focus();
                return false;
        }
        if (form.city.value == "") {
                alert("Sorry you have not entered your City");
                form.city.focus();
                return false;
        }
        if (form.stateprovince.value == "") {
                alert("Sorry you have not entered your State/Province");
                form.stateprovince.focus();
                return false;
        }
        if (form.country.value == "") {
                alert("Sorry you have not entered your Country");
                form.country.focus();
                return false;
        }
        if (form.zippostalcode.value == "") {
                alert("Sorry you have not entered your Zip/Postal Code");
                form.zippostalcode.focus();
                return false;
        }
        if (form.describeme.value == "") {
                alert("Sorry you have not selected your Description");
                form.describeme.focus();
                return false;
        }
	return true;
}
