
function jumpBox(list) {
   location.href = list.options[list.selectedIndex].value
   }

function Create(form)  {
  title = "Sneakers Madlib, by " + form.name.value;
  
  title = "<center><h3>" + title + "</h3></center>";

   madlibvalue = "<font size=large><p>I, " + form.name.value + ", would like to say a few " + form.adj1.value + " words about the most " + form.adj2.value + " invention of the twentieth century.</p><p>I am not referring to a " + form.convenience.value + " or even to the discovery of " + form.pluralnoun1.value + ".\n\n  The most " + form.adj3.value + " invention, in my opinion, is the sneaker.</p><p>If it were not for sneakers, our " + form.pluralbody1.value + " would be dirty, cold and " + form.adj4.value + ".</p><p>Sneakers keep me from " + form.verbing1.value + " if the " + form.pluralnoun2.value + " are slippery, and when I " + form.verb1.value + ", they keep me from stubbing my " + form.pluralbody2.value + ".</p><p>There are several special sneakers designed for " + form.verbing2.value + ", and others that you can wear if you only want to " + form.verb2.value + ".</p><p>My " + form.relatives1.value + " say they smell like old " + form.pluralnoun3.value + ", but they are wrong.</p><p>I have had my sneakers for " + form.number1.value + " years and I wouldn't trade them for all the " + form.drink.value + " in China!</p><br /><br /><center>The End.</center></font>";

   var win = window.open(', ', '','width=600,height=450,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
   win.document.write(title + madlibvalue);

   } 


function ClearData(form) {
   form.name.value = "";
   form.adj1.value = "";
   form.adj2.value = "";
   form.convenience.value = "";
   form.pluralnoun1.value = "";
   form.adj3.value = "";
   form.pluralbody1.value = "";
   form.adj4.value = "";
   form.verbing1.value = "";
   form.pluralnoun2.value = "";
   form.verb1.value = "";
   form.pluralbody2.value = "";
   form.verbing2.value = "";
   form.verb2.value = "";
   form.relatives1.value = "";
   form.pluralnoun3.value = "";
   form.number1.value = "";
   form.drink.value = "";
   }
