| <title>Webmail links</title> |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN"> |
| <meta http-equiv='Content-Type' content='text/html; charset=utf-8'> |
| <script type='text/javascript'> |
| var myTable = window.document.getElementById("my_table"); |
| row = myTable.insertRow(0); |
| cell = row.insertCell(0); |
| cell.innerHTML = "span 1"; |
| cell = row.insertCell(1); |
| cell.innerHTML = "span 1"; |
| row = myTable.insertRow(1); |
| cell = row.insertCell(0); |
| cell.innerHTML = "should span 2"; |
| <body onload="init_table()"> |
| <table id='my_table' border='1' width='200px' height='200px' cellpadding='0' cellspacing='0'> |