Form JavaScript Tutorial

< html>

  
    function showWindow() {
      var txt = document.form1.stringField.value;
      var clr = "";
      var sze = "";
      if (document.form1.bigBox.checked) txt = txt.big();
      if (document.form1.boldBox.checked) txt = txt.bold();
      if (document.form1.fixedBox.checked) txt = txt.fixed();
      objWindow = window.open("", "","width=600,height=300");
      objWindow.document.write(txt);
      objWindow.document.close();
  }
  


  
      String:
      Style:
      Big
      Bold
      Fixed