<!DOCTYPE HTML Public "-//W3C//DTD XHTML 1.0 transitional//en" "http://www.w3.org/TR/xhtml1/DTD/ Xhtml1-transitional.dtd "><HTMLxmlns= "http://www.w3.org/1999/xhtml"><Head><Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8" /><title>Untitled Document</title><Scripttype= "Text/javascript">functionSelectAll () {varInputs=document.checkForm.interesting; //For (var i in inputs) { for(varI=0; I<Inputs.length;i++) {inputs[i].checked=true; }}functionDeselectall () {varInputs=document.checkForm.interesting; for(varIinchinputs) {inputs[i].checked=false; }}functionReverseall () {varInputs=document.checkForm.interesting; for(varIinchinputs) {inputs[i].checked=!inputs[i].checked; }}</Script></Head><Body><formname= "Checkform"Action="#"Method= "Get">Hobbies and Interests:<BR/><inputtype= "checkbox"name= "Interesting"value= "1" />Football<BR/><inputtype= "checkbox"name= "Interesting"value= "2" />Basketball<BR/><inputtype= "checkbox"name= "Interesting"value= "3" />Badminton<BR/><inputtype= "checkbox"name= "Interesting"value= "4" />Billiards<BR/><inputtype= "checkbox"name= "Interesting"value= "5" />Table tennis<BR/><inputtype= "checkbox"name= "Interesting"value= "6" />Football<BR/></form><inputtype= "button"value= "Select All"onclick= "SelectAll ()" /><inputtype= "button"value= "Reverse Selection"onclick= "Reverseall ()" /><inputtype= "button"value= "Cancel"onclick= "Deselectall ()" /></Body></HTML>