3 <title>Webmail links
</title>
4 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
6 <meta http-equiv='Content-Type' content='text/html; charset=utf-
8'
>
8 <script type='text/javascript'
>
10 function init_table() {
12 var myTable
= window
.document
.getElementById("my_table");
16 row
= myTable
.insertRow(0);
18 cell
= row
.insertCell(0);
20 cell
.innerHTML
= "span 1";
22 cell
= row
.insertCell(1);
24 cell
.innerHTML
= "span 1";
26 row
= myTable
.insertRow(1);
28 cell
= row
.insertCell(0);
30 cell
.innerHTML
= "should span 2";
37 <body onload=
"init_table()">
39 <table id='my_table' border='
1' width='
200px' height='
200px' cellpadding='
0' cellspacing='
0'
>