// 小表上--------------------------
function lanyutabletop(size,m)
{
with(document){
write("<DIV class=lframe><TABLE cellSpacing=0 cellPadding=0 width='100%'><TBODY><TR><TD class='tl'></TD><TD class='tm'><SPAN class='tt'>");
write(size);
write("</SPAN></TD><TD class='tr'></TD></TD></TR></TBODY></TABLE><TABLE cellSpacing=0 cellPadding=0 width='95%'><TBODY><TR><TD class='");
                write(m);
write("'></TD><TD class='mm'>");
}
}
// 小表下--------------------------
function lanyutablebottom(m)
{ with(document){
write("</TD><TD class='");
                write(m);
                write("'></TD></TR></TBODY></TABLE><table width='95%' cellspacing='0' cellpadding='0'><tr><td bgcolor='#dddddd' height='1'></td></tr><tr><td height='5'></td></tr></table></div>");
}
}
// 大表--------------------------
function lanyutable(size)
{
with(document){
write("<TABLE cellSpacing=0 cellPadding=0 width='100%'><TBODY><TR><TD class=tl></TD><TD class=tm><TABLE cellSpacing=0 cellPadding=0 width='100%'><TBODY><TR><TD><SPAN class=tt>");
write(size);
write("</SPAN></TD></TR></TBODY></TABLE></TD><TD class=tr></TD></TR></TBODY></TABLE>");
}
}
什么“小表上”、“小表下”,“大表”的,是干什么用的。是返回表格大小的吗?其中“with(document)”与“write"是java中的什么语法?