Annotation of loncom/html/adm/dragmath/applet/Maxima.html, revision 1.1

1.1     ! www         1: <html>
        !             2: <head>
        !             3: <title>DragMath Maxima Example</title>
        !             4: 
        !             5: <script language="JavaScript">
        !             6: var thedata;
        !             7: var newwin;
        !             8: var thenumber;
        !             9: function edit(textarea)
        !            10: {
        !            11:     thenumber = textarea;
        !            12:     thedata = document.forms['exampleform'].elements[textarea].value
        !            13: 
        !            14:     newwin = window.open("MaximaPopup.html","","width=565,height=400,resizable")
        !            15: }
        !            16: </script>
        !            17: </head>
        !            18: 
        !            19: 
        !            20: <body>
        !            21: <DIV align=left><FONT face=Arial color=#000080 
        !            22: size=6><STRONG>DragMath Maxima Example</STRONG></FONT></DIV>
        !            23: <br><br>
        !            24: 
        !            25: <FORM name="exampleform">
        !            26: 
        !            27: <p>Factorise 20*x+5
        !            28: <br>
        !            29: <input type="text" id="data0" name="data0" cols="15" />
        !            30: <input type="button" value="Editor" onclick="edit('data0')">
        !            31: </p>
        !            32: 
        !            33: <p>Differentiate 2·x5+2·x4-x3+3·x2-2·x with respect to x
        !            34: <br>
        !            35: <input type="text" id="data1" name="data1" cols="15">
        !            36: <input type="button" value="Editor" onclick="edit('data1')">
        !            37: </p>
        !            38: 
        !            39: <p>Integrate cos( 5·x ) with respect to x
        !            40: <br>
        !            41: <input type="text" id="data3" name="data3" cols="15">
        !            42: <input type="button" value="Editor" onclick="edit('data3')">
        !            43: </p>
        !            44: 
        !            45: <input type="submit" name="submit" value="Submit" />
        !            46: </FORM>
        !            47: 
        !            48: </body>
        !            49: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>