function startform() {
    document.fm.email.focus();
}

function checkform(){
address_ok = true;


if (document.fm.email.value== "") address_ok = false
if (document.fm.Guest_postal.value== "") address_ok = false
if (document.fm.location.value== "") address_ok = false;

form_ok = (address_ok);

if (form_ok){
document.forms[1].submit();
} else {
	if (address_ok==false) alert ("Please complete all required fields")
}

return form_ok;
}


