<SCRIPT LANGUAGE=JavaScript>
function go()
{
wdow=open("","calculs","height=140,width=300","scr
ollbars=yes")
wdow.document.write("<PRE>")
x1=(10-Math.sqrt(101))/2;
x2=(10+Math.sqrt(101))/2;
wdow.document.writeln(x1+" , "+x2)
p=x1*x2;
wdow.document.writeln(p)
p1=x1*x1-10*x1-0.25;
p2=x2*x2-10*x2-0.25;
wdow.document.writeln(p1);
wdow.document.writeln(p2);
wdow.document.writeln("------------------------")
x1=0.25/x2;
wdow.document.writeln(x1+" , "+x2)
p=x1*x2;wdow.document.writeln(p)
p1=x1*x1-10*x1-0.25;
p2=x2*x2-10*x2-0.25;
wdow.document.writeln(p1);
wdow.document.writeln(p2);
}</SCRIPT>