
//validates home page form
<!--
function validate(what) {
    for (var i=0;i<what.proposeoption.length;i++) {
        if (what.proposeoption[i].checked)
            return true;
    }
    alert("Please choose an option.");
    return false;
}
-->
