function test(msg){
    win.title = msg
    but1.font.bold = true
}
function selection(msg) {
    submit.font.bold = true
    if(brFast.checked)
      msg = "You are with us for: Breakfast "
    if (lunch.checked)
      msg += " Lunch "
    if(dinner.checked)
        msg += " Dinner"
    result.text = msg
}
