Grange Farm - Farm House Chrismas Meal Demo Questionnaire

Fill in the form. The data is stored on www.dougrice.webhoster.co.uk
The data is processed using the Multi Table eScrap Book.
Look for the XMAS meal tables at the bottom.

Feel free to use this.

The menu choices are configured by setting up the code on this page :

    var choicesA = "Starter:,Broccoli and Silton Soup, Duck Pate, Festive Prawn Cocktail".split(",")
    genOptions()

    var choicesA = "Main Course:,Roast Turkey, 10 oz Rump Steak with red Wine source,Grilled Salmon with a wine & Tomato Sauce, Goats Cheese Tart(V)".split(",")
    genOptions()

    var choicesA = "Deserts:,Christmas Pudding,Chocolate Double Whammy, Winter Berry Pie,Santa Sundae".split(",")
    genOptions()

Christmas Menu:

 

Name:

Starters:

Main Course

Deserts


Test other form elements

Select File:
password:
text:
hidden:
text

CommentComment 2


The form's field above are copied onto the submit form using code based on this:

<script>

function pop( gbA_row ){
var F1 = window.document.forms["F1"]
var F2 = window.document.forms["F2"]

var opStr =""
for ( var i = 0 ; i < F2.elements.length ; i++ ){
  opStr=opStr+"\n|"+
  F2.elements[i].type+","+
  F2.elements[i].checked+","+
  F2.elements[i].selected+"|"+
  F2.elements[i].name+"="+
  F2.elements[i].value +"|"
}

// Set up the form submitted to the BT Internet Guestbook.
F1.name.value 	    = F2.person.value
F1.email.value      = ""
F1.userfield1.value = F2.person.value
F1.userfield2.value = ""
F1.userfield3.value = ""
F1.userfield4.value = "Generic Form"
F1.comments.value   = opStr

//F1.comments.value = record.comments.replace( /<BR>/g,"\n" )
// focus on end and start of file to display form on screen.

F1.comments.focus()
F1.name.focus()

}
</script>