function WinOpen() {
  var url=document.myform.opttwo.value
  document.location.href=url
}

function setOptions(chosen) {
var selbox = document.myform.opttwo;
 
selbox.options.length = 0;
if (chosen == " ") {
  selbox.options[selbox.options.length] = new Option('Select recipient first','index.html');
 
}
if (chosen == "1") {
  selbox.options[selbox.options.length] = new Option('Any Occasion','free-printable-cards-all-occasions-women.html');
  selbox.options[selbox.options.length] = new Option('Apology','free-printable-cards-apology-women.html');
  selbox.options[selbox.options.length] = new Option('Anniversary','free-printable-cards-anniversary-women.html');
  selbox.options[selbox.options.length] = new Option('Birthday','free-printable-cards-birthday-women.html');
  selbox.options[selbox.options.length] = new Option('Christmas','free-printable-cards-christmas-women.html');
  selbox.options[selbox.options.length] = new Option('Get Well','free-printable-cards-get-well-women.html');
  selbox.options[selbox.options.length] = new Option('Missing You','free-printable-cards-missing-you-women.html');
  selbox.options[selbox.options.length] = new Option("Mother's Day",'free-mothers-day-cards.html');
  selbox.options[selbox.options.length] = new Option("New Year's",'free-printable-cards-new-years-women.html');
  selbox.options[selbox.options.length] = new Option("St. Patrick's",'free-st-patrick-cards.html');
  selbox.options[selbox.options.length] = new Option('Thank You','free-printable-cards-thank-you-women.html');
  selbox.options[selbox.options.length] = new Option("Valentine's",'free-printable-cards-valentines-day-women.html');
}
if (chosen == "2") {
  selbox.options[selbox.options.length] = new Option('Any Occasion','printable-gay-cards-all-occasions.html');
  selbox.options[selbox.options.length] = new Option('Apology','printable-gay-cards-apology.html');
  selbox.options[selbox.options.length] = new Option('Anniversary','printable-gay-cards-anniversary.html');
  selbox.options[selbox.options.length] = new Option('Birthday','printable-gay-cards-birthday.html');
  selbox.options[selbox.options.length] = new Option('Christmas','printable-gay-cards-christmas.html');
  selbox.options[selbox.options.length] = new Option('Coming Out','printable-gay-cards-comming-out.html');
  selbox.options[selbox.options.length] = new Option('Get Well','printable-gay-cards-get-well.html');
  selbox.options[selbox.options.length] = new Option('Missing You','printable-gay-cards-missing-you.html');
  selbox.options[selbox.options.length] = new Option("Mother's Day",'free-mothers-day-cards-gay.html');
  selbox.options[selbox.options.length] = new Option("New Year's",'printable-gay-cards-new-years.html');
  selbox.options[selbox.options.length] = new Option("St. Patrick's",'free-st-patrick-cards-gay.html');
  selbox.options[selbox.options.length] = new Option('Thank You','printable-gay-cards-thank-you.html');
  selbox.options[selbox.options.length] = new Option("Valentine's",'printable-gay-cards-valentines-day.html');
}
if (chosen == "3") {
  selbox.options[selbox.options.length] = new Option('Any Occasion','free-printable-cards-all-occasions-men.html');
  selbox.options[selbox.options.length] = new Option('Apology','free-printable-cards-apology-men.html');
  selbox.options[selbox.options.length] = new Option('Anniversary','free-printable-cards-anniversary-men.html');
  selbox.options[selbox.options.length] = new Option('Birthday','free-printable-cards-birthday-men.html');
  selbox.options[selbox.options.length] = new Option('Christmas','free-printable-cards-christmas-men.html');
  selbox.options[selbox.options.length] = new Option('Get Well','free-printable-cards-get-well-men.html');
  selbox.options[selbox.options.length] = new Option('Missing You','free-printable-cards-missing-you-men.html');
  selbox.options[selbox.options.length] = new Option("Mother's Day",'free-mothers-day-cards-men.html');
  selbox.options[selbox.options.length] = new Option("New Year's",'free-printable-cards-new-years-men.html');
  selbox.options[selbox.options.length] = new Option("St. Patrick's",'free-st-patrick-cards-men.html');
  selbox.options[selbox.options.length] = new Option('Thank You','free-printable-cards-thank-you-men.html');
  selbox.options[selbox.options.length] = new Option("Valentine's",'free-printable-cards-valentines-day-men.html');
}
}