<!--
// a function to determine which radio button is checkedfunction set_referral(n){
  if(document.forms.Form.rad[0].checked) net();  if(document.forms.Form.rad[1].checked) phonebook();
  if(document.forms.Form.rad[2].checked) receptionsite();  if(document.forms.Form.rad[3].checked) friend(); }// a function to assign internet optionsfunction net(){  with(document.forms.Form.found_from.options[0])  {    selected = true;    text = "Which Web Site?";    value="";  }  with(document.forms.Form.found_from.options[1])  {    text="google"; value="google";  }  with(document.forms.Form.found_from.options[2])  {    text="yahoo"; value="yahoo";  }  with(document.forms.Form.found_from.options[3])  {    text="Ad on the Knot"; value="Ad on the Knot";  }
  with(document.forms.Form.found_from.options[4])  {    text="Knot Message Board"; value="Knot Message Board";  }
  with(document.forms.Form.found_from.options[5])  {    text="www.Unique-Celebrations.com"; value="UC";  }
  with(document.forms.Form.found_from.options[6])  {    text="Facebook"; value="Facebook";  }
  with(document.forms.Form.found_from.options[12])  {    text="other search engine"; value="other search engine";  }
  with(document.forms.Form.found_from.options[9])  {    text="Wedding Wire"; value="Wedding Wire";  }
  with(document.forms.Form.found_from.options[10])  {    text="link on a web site"; value="other site link";  }
  with(document.forms.Form.found_from.options[7])  {    text="MSN - Bing"; value="Bing";  }
  with(document.forms.Form.found_from.options[8])  {    text="Planned Perfection"; value="Planned Perfection";  }
  with(document.forms.Form.found_from.options[11])  {    text="My Space"; value="My Space";  }

}// a function to assign phone book optionsfunction phonebook(){  with(document.forms.Form.found_from.options[0])  {    selected = true;    text = "Which Phone Book?";    value="";  }  with(document.forms.Form.found_from.options[1])  {    text="Yellow Book"; value="Yellow Book";  }  with(document.forms.Form.found_from.options[2])  {    text="Verizon"; value="Verizon";  }  with(document.forms.Form.found_from.options[3])  {    text="Idearc"; value="Idearc";  }
  with(document.forms.Form.found_from.options[4])  {    text="Embarq"; value="Embarq";  }  with(document.forms.Form.found_from.options[5])  {    text="Not Sure"; value="Not Sure";  }  with(document.forms.Form.found_from.options[6])  {    text="Other phone book"; value="Other phone book";  }  with(document.forms.Form.found_from.options[7])  {    text=""; value="";  }  with(document.forms.Form.found_from.options[8])  {    text=""; value="";  }
  with(document.forms.Form.found_from.options[9])  {    text=""; value="";  }
  with(document.forms.Form.found_from.options[10])  {    text=""; value="";  }
  with(document.forms.Form.found_from.options[11])  {    text=""; value="";  }
  with(document.forms.Form.found_from.options[12])  {    text=""; value="";  }
}

// a function to assign site optionsfunction receptionsite(){  with(document.forms.Form.found_from.options[0])  {    selected = true;    text = "Which Reception Site?";    value="";  }  with(document.forms.Form.found_from.options[1])  {    text="Cameron Estate"; value="Cameron Estate";  }  with(document.forms.Form.found_from.options[2])  {    text="Cork Factory"; value="Cork Factory";  }  with(document.forms.Form.found_from.options[3])  {    text="Hamilton Ballroom"; value="Hamilton Ballroom";  }
  with(document.forms.Form.found_from.options[4])  {    text="Hershey Country Club"; value="Hershey Country Club";  }  with(document.forms.Form.found_from.options[5])  {     text="Lime Spring Farm"; value="Lime Spring Farm"; }  with(document.forms.Form.found_from.options[6])  {      text="Hotel Hershey"; value="Hotel Hershey";  }  with(document.forms.Form.found_from.options[7])  {    text="Lauxmont Farms"; value="Lauxmont Farms";  }  with(document.forms.Form.found_from.options[8])  {    text="Peter Allen House"; value="Peter Allen House";  }
 with(document.forms.Form.found_from.options[9])  {
    text="Riverdale Manor"; value="Riverdale Manor";  }
 with(document.forms.Form.found_from.options[10])  {    text="The Sheraton"; value="The Sheraton";  }
 with(document.forms.Form.found_from.options[11])  {    text="Willow Valley"; value="Willow Valley";}
 with(document.forms.Form.found_from.options[12])  {    text="Other Reception Hall"; value="other hall";  }
}// a function to assign site optionsfunction friend(){  with(document.forms.Form.found_from.options[0])  {    selected = true;    text = "How did you found us?";    value="";  }  with(document.forms.Form.found_from.options[1])  {    text="I saw you at a job"; value="I saw you at a job";  }  with(document.forms.Form.found_from.options[2])  {    text="A friend saw you at a job"; value="A friend saw you at a job";  }  with(document.forms.Form.found_from.options[3])  {    text="I saw you at a Bridal Show"; value="I saw you at a Bridal Show";  }
  with(document.forms.Form.found_from.options[4])  {    text="Event Central"; value="Event Central";  }  with(document.forms.Form.found_from.options[5])  {    text="Sir Ds Catering"; value="Sir Ds Catering";  }  with(document.forms.Form.found_from.options[6])  {    text="The Wiebners"; value="The Wiebners";  }  with(document.forms.Form.found_from.options[7])  {    text="JDK Catering"; value="JDK Catering";  }    with(document.forms.Form.found_from.options[8])  {    text="Rettews Catering"; value="Rettews Catering";  }
  with(document.forms.Form.found_from.options[9])  {    text="Kyle Keagy"; value="Kyle Keagy";  }
  with(document.forms.Form.found_from.options[10])  {    text="Artistic Difference Photographers"; value="Artistic Difference";  }
  with(document.forms.Form.found_from.options[11])  {   text="Wickeys"; value="Wickeys";  }
with(document.forms.Form.found_from.options[12])  {     text="Other reference"; value="other reference";  }

}

-->