function drawDot(x,y,color,size)
{
var string3="<table border='0' cellspacing=0 cellpadding=0><tr>";
string3+="<td style='position: absolute; left: "+(x)+"; top: "+(y)+";background-color: "+color+"' width="+size+" height="+size+"></td></tr></table>";

document.getElementById("display1").innerHTML = string3;
////*******为什么此行不能实现在本页面上画图????
////如果改为document.write(string3);可以画图,但是不在同一个页面上
///怎么改???????????????????????????????????????????????????????????
???????????????????????????????????????????????????????????????????

}