 var selectId = 0;

 function init(){
 // document.PotLuckSignup.LastName.focus();
  return true;
 }
 function setDesc(desc){
//alert("desc = "+desc);
       document.PotLuckSignupForm.menuDesc.value = desc;
 }
 function setMenuId(menuId){
//alert("menuId="+menuId);
       document.PotLuckSignupForm.menuId.value = menuId;
   return true;
 }

 function setRoster(id){
//alert("roster="+id);
   selectId = id;
   document.PotLuckSignupForm.rosterId.value = 
       document.PotLuckSignupForm.rosterIndex[id].value ;
  return true;
 }

function finalValidation(){
 // if(!validateAttendance()){
   //  return false;
 //}
 return true;
}

